Home
last modified time | relevance | path

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

/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSafeTreeSet.java34 public final class SafeTreeSet<E> implements Serializable, NavigableSet<E> { class
43 public SafeTreeSet() { in SafeTreeSet() method in SafeTreeSet
47 public SafeTreeSet(Collection<? extends E> collection) { in SafeTreeSet() method in SafeTreeSet
51 public SafeTreeSet(Comparator<? super E> comparator) { in SafeTreeSet() method in SafeTreeSet
55 public SafeTreeSet(SortedSet<E> set) { in SafeTreeSet() method in SafeTreeSet
59 private SafeTreeSet(NavigableSet<E> delegate) { in SafeTreeSet() method in SafeTreeSet
107 return new SafeTreeSet<E>(delegate.descendingSet()); in descendingSet()
123 return new SafeTreeSet<E>( in headSet()
173 return new SafeTreeSet<E>( in subSet()
/external/guava/guava-tests/test/com/google/common/collect/
DForwardingSortedSetTest.java19 import com.google.common.collect.testing.SafeTreeSet;
113 new SafeTreeSet<String>(Arrays.asList(elements))); in suite()