Searched refs:UnmodifiableSortedSet (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java1144 return new UnmodifiableSortedSet<>(s);
1150 static class UnmodifiableSortedSet<E> class in class:Collections
1156 UnmodifiableSortedSet(SortedSet<E> s) {super(s); ss = s;} method in class:Collections.UnmodifiableSortedSet
1161 return new UnmodifiableSortedSet<>(ss.subSet(fromElement,toElement));
1164 return new UnmodifiableSortedSet<>(ss.headSet(toElement));
1167 return new UnmodifiableSortedSet<>(ss.tailSet(fromElement));

Completed in 41 milliseconds