Searched defs:constrainedSortedSet (Results 1 - 1 of 1) 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);

Completed in 43 milliseconds