Searched defs:headSet (Results 1 - 7 of 7) sorted by relevance
| /openjdk7/jdk/src/share/classes/java/util/ |
| H A D | SortedSet.java | 178 SortedSet<E> headSet(E toElement); method in interface:SortedSet
|
| H A D | NavigableSet.java | 52 * null}. Methods {@code subSet}, {@code headSet}, 69 * {@link #headSet(Object) headSet(E)}, and 256 NavigableSet<E> headSet(E toElement, boolean inclusive); method in interface:NavigableSet 301 * <p>Equivalent to {@code headSet(toElement, false)}. 307 SortedSet<E> headSet(E toElement); method in interface:NavigableSet
|
| H A D | TreeSet.java | 337 public NavigableSet<E> headSet(E toElement, boolean inclusive) { method in class:TreeSet 371 public SortedSet<E> headSet(E toElement) { method in class:TreeSet 372 return headSet(toElement, false);
|
| H A D | Collections.java | 1133 * <tt>subSet</tt>, <tt>headSet</tt>, or <tt>tailSet</tt> views, result in 1163 public SortedSet<E> headSet(E toElement) { method in class:Collections.UnmodifiableSortedSet 1164 return new UnmodifiableSortedSet<>(ss.headSet(toElement)); 1731 * <tt>headSet</tt>, or <tt>tailSet</tt> views. 1744 * SortedSet s2 = s.headSet(foo); 1794 public SortedSet<E> headSet(E toElement) { method in class:Collections.SynchronizedSortedSet 1796 return new SynchronizedSortedSet<>(ss.headSet(toElement), mutex); 2459 public SortedSet<E> headSet(E toElement) { method in class:Collections.CheckedSortedSet 2460 return checkedSortedSet(ss.headSet(toElement), type);
|
| H A D | TreeMap.java | 1072 public NavigableSet<E> headSet(E toElement, boolean inclusive) { method in class:TreeMap.KeySet 1081 public SortedSet<E> headSet(E toElement) { method in class:TreeMap.KeySet 1082 return headSet(toElement, false);
|
| /openjdk7/jdk/src/share/classes/java/util/concurrent/ |
| H A D | ConcurrentSkipListSet.java | 417 public NavigableSet<E> headSet(E toElement, boolean inclusive) { method in class:ConcurrentSkipListSet 445 public NavigableSet<E> headSet(E toElement) { method in class:ConcurrentSkipListSet 446 return headSet(toElement, false);
|
| H A D | ConcurrentSkipListMap.java | 2361 public NavigableSet<E> headSet(E toElement, boolean inclusive) { method in class:ConcurrentSkipListMap.KeySet 2370 public NavigableSet<E> headSet(E toElement) { method in class:ConcurrentSkipListMap.KeySet 2371 return headSet(toElement, false);
|
Completed in 334 milliseconds