Lines Matching defs:fromKey

1801         public SortedMap<K,V> subMap(K fromKey, K toKey)
1802 { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); }
1805 public SortedMap<K,V> tailMap(K fromKey)
1806 { return new UnmodifiableSortedMap<>(sm.tailMap(fromKey)); }
1942 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
1944 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
1949 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive)
1950 { return unmodifiableNavigableMap(nm.tailMap(fromKey, inclusive)); }
2774 public SortedMap<K,V> subMap(K fromKey, K toKey) {
2777 sm.subMap(fromKey, toKey), mutex);
2785 public SortedMap<K,V> tailMap(K fromKey) {
2787 return new SynchronizedSortedMap<>(sm.tailMap(fromKey),mutex);
2921 public SortedMap<K,V> subMap(K fromKey, K toKey) {
2924 nm.subMap(fromKey, true, toKey, false), mutex);
2932 public SortedMap<K,V> tailMap(K fromKey) {
2934 return new SynchronizedNavigableMap<>(nm.tailMap(fromKey, true),mutex);
2938 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
2941 nm.subMap(fromKey, fromInclusive, toKey, toInclusive), mutex);
2952 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) {
2955 nm.tailMap(fromKey, inclusive), mutex);
3983 public SortedMap<K,V> subMap(K fromKey, K toKey) {
3984 return checkedSortedMap(sm.subMap(fromKey, toKey),
3990 public SortedMap<K,V> tailMap(K fromKey) {
3991 return checkedSortedMap(sm.tailMap(fromKey), keyType, valueType);
4138 public NavigableMap<K,V> subMap(K fromKey, K toKey) {
4139 return checkedNavigableMap(nm.subMap(fromKey, true, toKey, false),
4149 public NavigableMap<K,V> tailMap(K fromKey) {
4150 return checkedNavigableMap(nm.tailMap(fromKey, true), keyType, valueType);
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);
4161 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) {
4162 return checkedNavigableMap(nm.tailMap(fromKey, inclusive), keyType, valueType);