Lines Matching defs:subMap

1773      * {@code subMap}, {@code headMap}, or {@code tailMap} views, result in
1801 public SortedMap<K,V> subMap(K fromKey, K toKey)
1802 { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); }
1817 * {@code subMap}, {@code headMap}, or {@code tailMap} views, result in
1942 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
1944 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
2709 * collections views of any of its {@code subMap}, {@code headMap} or
2726 * SortedMap m2 = m.subMap(foo, bar);
2774 public SortedMap<K,V> subMap(K fromKey, K toKey) {
2777 sm.subMap(fromKey, toKey), mutex);
2807 * collections views of any of its {@code subMap}, {@code headMap} or
2824 * NavigableMap m2 = m.subMap(foo, true, bar, false);
2921 public SortedMap<K,V> subMap(K fromKey, K toKey) {
2924 nm.subMap(fromKey, true, toKey, false), mutex);
2938 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
2941 nm.subMap(fromKey, fromInclusive, toKey, toInclusive), mutex);
3983 public SortedMap<K,V> subMap(K fromKey, K toKey) {
3984 return checkedSortedMap(sm.subMap(fromKey, toKey),
4138 public NavigableMap<K,V> subMap(K fromKey, K toKey) {
4139 return checkedNavigableMap(nm.subMap(fromKey, true, toKey, false),
4153 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
4154 return checkedNavigableMap(nm.subMap(fromKey, fromInclusive, toKey, toInclusive), keyType, valueType);