Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/collect/
DConstraints.java157 public static <E> SortedSet<E> constrainedSortedSet( in constrainedSortedSet() method in Constraints
176 return constrainedSortedSet(delegate.headSet(toElement), constraint); in headSet()
179 return constrainedSortedSet( in subSet()
183 return constrainedSortedSet(delegate.tailSet(fromElement), constraint); in tailSet()
309 return constrainedSortedSet((SortedSet<E>) collection, constraint); in constrainedTypePreservingCollection()
/external/guava/guava-tests/test/com/google/common/collect/
DConstraintsTest.java134 SortedSet<String> constrained = Constraints.constrainedSortedSet( in testConstrainedSortedSetLegal()
152 SortedSet<String> constrained = Constraints.constrainedSortedSet( in testConstrainedSortedSetIllegal()