Searched refs:constrainedSortedSet (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DConstraints.java157 public static <E> SortedSet<E> constrainedSortedSet( method in class:Constraints
162 /** @see Constraints#constrainedSortedSet */
176 return constrainedSortedSet(delegate.headSet(toElement), constraint);
179 return constrainedSortedSet(
183 return constrainedSortedSet(delegate.tailSet(fromElement), constraint);
309 return constrainedSortedSet((SortedSet<E>) collection, constraint);
/external/guava/guava-tests/test/com/google/common/collect/
H A DConstraintsTest.java134 SortedSet<String> constrained = Constraints.constrainedSortedSet(
152 SortedSet<String> constrained = Constraints.constrainedSortedSet(

Completed in 108 milliseconds