| /openjdk7/jdk/src/share/classes/java/util/ |
| H A D | SortedMap.java | 208 SortedMap<K,V> tailMap(K fromKey); method in interface:SortedMap
|
| H A D | NavigableMap.java | 56 * and {@code tailMap} differ from the like-named {@code 77 * {@link #tailMap(Object) tailMap(K)} 390 NavigableMap<K,V> tailMap(K fromKey, boolean inclusive); method in interface:NavigableMap 417 * <p>Equivalent to {@code tailMap(fromKey, true)}. 423 SortedMap<K,V> tailMap(K fromKey); method in interface:NavigableMap
|
| H A D | Collections.java | 1511 * <tt>subMap</tt>, <tt>headMap</tt>, or <tt>tailMap</tt> views, result in 1545 public SortedMap<K,V> tailMap(K fromKey) { method in class:Collections.UnmodifiableSortedMap 1546 return new UnmodifiableSortedMap<>(sm.tailMap(fromKey)); 2106 * <tt>tailMap</tt> views. 2179 public SortedMap<K,V> tailMap(K fromKey) { method in class:Collections.SynchronizedSortedMap 2181 return new SynchronizedSortedMap<>(sm.tailMap(fromKey),mutex); 2967 public SortedMap<K,V> tailMap(K fromKey) { method in class:Collections.CheckedSortedMap 2968 return checkedSortedMap(sm.tailMap(fromKey), keyType, valueType);
|
| H A D | TreeMap.java | 904 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) { method in class:TreeMap 939 public SortedMap<K,V> tailMap(K fromKey) { method in class:TreeMap 940 return tailMap(fromKey, true); 1076 return new KeySet<>(m.tailMap(fromElement, inclusive)); 1510 public final SortedMap<K,V> tailMap(K fromKey) { method in class:TreeMap.NavigableSubMap 1511 return tailMap(fromKey, true); 1725 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) { method in class:TreeMap.AscendingSubMap 1806 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) { method in class:TreeMap.DescendingSubMap 1874 public SortedMap<K,V> tailMap(K fromKey) { throw new InternalError(); } method in class:TreeMap.SubMap
|
| /openjdk7/jdk/src/share/classes/java/util/concurrent/ |
| H A D | ConcurrentNavigableMap.java | 76 ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive); method in interface:ConcurrentNavigableMap 97 ConcurrentNavigableMap<K,V> tailMap(K fromKey); method in interface:ConcurrentNavigableMap
|
| H A D | ConcurrentSkipListMap.java | 2006 public ConcurrentNavigableMap<K,V> tailMap(K fromKey, method in class:ConcurrentSkipListMap 2037 public ConcurrentNavigableMap<K,V> tailMap(K fromKey) { method in class:ConcurrentSkipListMap 2038 return tailMap(fromKey, true); 2365 return new KeySet<E>(m.tailMap(fromElement, inclusive)); 2470 * <tt>tailMap</tt> methods of their underlying maps. 2877 public SubMap<K,V> tailMap(K fromKey, method in class:ConcurrentSkipListMap.SubMap 2892 public SubMap<K,V> tailMap(K fromKey) { method in class:ConcurrentSkipListMap.SubMap 2893 return tailMap(fromKey, true);
|
| /openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/ |
| H A D | PropMap.java | 325 public SortedMap<Object, Object> tailMap(Object fromKey) { method in class:PropMap 326 return theMap.tailMap(fromKey);
|