Home | History | Annotate | Download | only in collect

Lines Matching defs:sortedSet

30 import java.util.SortedSet;
49 if (elements instanceof SortedSet) {
50 SortedSet<?> sortedSet = (SortedSet<?>) elements;
51 comparator2 = sortedSet.comparator();
70 SortedSet<E> sortedSet = Sets.newTreeSet(comparator);
71 Iterators.addAll(sortedSet, elements);
72 return sortedSet;