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.java129 public static <E> SortedSet<E> constrainedSortedSet( in constrainedSortedSet() method in Constraints
148 return constrainedSortedSet(delegate.headSet(toElement), constraint); in headSet()
151 return constrainedSortedSet( in subSet()
155 return constrainedSortedSet(delegate.tailSet(fromElement), constraint); in tailSet()
281 return constrainedSortedSet((SortedSet<E>) collection, constraint); in constrainedTypePreservingCollection()
/external/guava/guava-tests/test/com/google/common/collect/
DConstraintsTest.java125 SortedSet<String> constrained = Constraints.constrainedSortedSet( in testConstrainedSortedSetLegal()
144 SortedSet<String> constrained = Constraints.constrainedSortedSet( in testConstrainedSortedSetIllegal()