Home | History | Annotate | Download | only in util

Lines Matching defs:unmodifiableSortedSet

1192     public static <T> SortedSet<T> unmodifiableSortedSet(SortedSet<T> s) {
1193 return new UnmodifiableSortedSet<>(s);
1199 static class UnmodifiableSortedSet<E>
1205 UnmodifiableSortedSet(SortedSet<E> s) {super(s); ss = s;}
1210 return new UnmodifiableSortedSet<>(ss.subSet(fromElement,toElement));
1213 return new UnmodifiableSortedSet<>(ss.headSet(toElement));
1216 return new UnmodifiableSortedSet<>(ss.tailSet(fromElement));
1252 extends UnmodifiableSortedSet<E>