Searched defs:headMap (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DSortedMap.java181 SortedMap<K,V> headMap(K toKey); method in interface:SortedMap
H A DNavigableMap.java55 * ones. Methods {@code subMap}, {@code headMap},
76 * {@link #headMap(Object) headMap(K)}, and
361 NavigableMap<K,V> headMap(K toKey, boolean inclusive); method in interface:NavigableMap
406 * <p>Equivalent to {@code headMap(toKey, false)}.
412 SortedMap<K,V> headMap(K toKey); method in interface:NavigableMap
H A DCollections.java1511 * <tt>subMap</tt>, <tt>headMap</tt>, or <tt>tailMap</tt> views, result in
1542 public SortedMap<K,V> headMap(K toKey) { method in class:Collections.UnmodifiableSortedMap
1543 return new UnmodifiableSortedMap<>(sm.headMap(toKey));
2105 * collections views of any of its <tt>subMap</tt>, <tt>headMap</tt> or
2174 public SortedMap<K,V> headMap(K toKey) { method in class:Collections.SynchronizedSortedMap
2176 return new SynchronizedSortedMap<>(sm.headMap(toKey), mutex);
2964 public SortedMap<K,V> headMap(K toKey) { method in class:Collections.CheckedSortedMap
2965 return checkedSortedMap(sm.headMap(toKey), keyType, valueType);
H A DTreeMap.java890 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { method in class:TreeMap
928 public SortedMap<K,V> headMap(K toKey) { method in class:TreeMap
929 return headMap(toKey, false);
1073 return new KeySet<>(m.headMap(toElement, inclusive));
1506 public final SortedMap<K,V> headMap(K toKey) { method in class:TreeMap.NavigableSubMap
1507 return headMap(toKey, false);
1717 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { method in class:TreeMap.AscendingSubMap
1798 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { method in class:TreeMap.DescendingSubMap
1873 public SortedMap<K,V> headMap(K toKey) { throw new InternalError(); } method in class:TreeMap.SubMap
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentNavigableMap.java68 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive); method in interface:ConcurrentNavigableMap
90 ConcurrentNavigableMap<K,V> headMap(K toKey); method in interface:ConcurrentNavigableMap
H A DConcurrentSkipListMap.java1993 public ConcurrentNavigableMap<K,V> headMap(K toKey, method in class:ConcurrentSkipListMap
2028 public ConcurrentNavigableMap<K,V> headMap(K toKey) { method in class:ConcurrentSkipListMap
2029 return headMap(toKey, false);
2362 return new KeySet<E>(m.headMap(toElement, inclusive));
2469 * constructed only using the <tt>subMap</tt>, <tt>headMap</tt>, and
2870 public SubMap<K,V> headMap(K toKey, method in class:ConcurrentSkipListMap.SubMap
2888 public SubMap<K,V> headMap(K toKey) { method in class:ConcurrentSkipListMap.SubMap
2889 return headMap(toKey, false);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPropMap.java320 public SortedMap<Object, Object> headMap(Object toKey) { method in class:PropMap
321 return theMap.headMap(toKey);

Completed in 87 milliseconds