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

/libcore/ojluni/src/main/java/java/util/
H A DSortedSet.java178 SortedSet<E> headSet(E toElement); method in interface:SortedSet
H A DNavigableSet.java59 * {@link #headSet(Object, boolean) headSet(E, boolean)}, and
76 * {@link #headSet(Object) headSet(E)}, and
259 NavigableSet<E> headSet(E toElement, boolean inclusive); method in interface:NavigableSet
304 * <p>Equivalent to {@code headSet(toElement, false)}.
310 SortedSet<E> headSet(E toElement); method in interface:NavigableSet
H A DTreeSet.java337 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 DTreeMap.java1185 public NavigableSet<E> headSet(E toElement, boolean inclusive) { method in class:TreeMap.KeySet
1194 public SortedSet<E> headSet(E toElement) { method in class:TreeMap.KeySet
1195 return headSet(toElement, false);
H A DCollections.java1214 * <tt>subSet</tt>, <tt>headSet</tt>, or <tt>tailSet</tt> views, result in
1245 public SortedSet<E> headSet(E toElement) { method in class:Collections.UnmodifiableSortedSet
1246 return new UnmodifiableSortedSet<>(ss.headSet(toElement));
1997 * <tt>headSet</tt>, or <tt>tailSet</tt> views.
2010 * SortedSet s2 = s.headSet(foo);
2061 public SortedSet<E> headSet(E toElement) { method in class:Collections.SynchronizedSortedSet
2063 return new SynchronizedSortedSet<>(ss.headSet(toElement), mutex);
2810 public SortedSet<E> headSet(E toElement) { method in class:Collections.CheckedSortedSet
2811 return checkedSortedSet(ss.headSet(toElement), type);
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListSet.java399 public NavigableSet<E> headSet(E toElement, boolean inclusive) { method in class:ConcurrentSkipListSet
427 public NavigableSet<E> headSet(E toElement) { method in class:ConcurrentSkipListSet
428 return headSet(toElement, false);
H A DConcurrentSkipListMap.java2385 public NavigableSet<K> headSet(K toElement, boolean inclusive) { method in class:ConcurrentSkipListMap.KeySet
2394 public NavigableSet<K> headSet(K toElement) { method in class:ConcurrentSkipListMap.KeySet
2395 return headSet(toElement, false);

Completed in 239 milliseconds