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

/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java1522 return new UnmodifiableSortedMap<>(m);
1528 static class UnmodifiableSortedMap<K,V> class in class:Collections
1535 UnmodifiableSortedMap(SortedMap<K, ? extends V> m) {super(m); sm = m;} method in class:Collections.UnmodifiableSortedMap
1540 return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey));
1543 return new UnmodifiableSortedMap<>(sm.headMap(toKey));
1546 return new UnmodifiableSortedMap<>(sm.tailMap(fromKey));

Completed in 42 milliseconds