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

/libcore/ojluni/src/main/java/java/util/
H A DSortedSet.java205 SortedSet<E> tailSet(E fromElement); method in interface:SortedSet
H A DNavigableSet.java61 * {@link #tailSet(Object, boolean) tailSet(E, boolean)}
78 * {@link #tailSet(Object) tailSet(E)}
289 NavigableSet<E> tailSet(E fromElement, boolean inclusive); method in interface:NavigableSet
316 * <p>Equivalent to {@code tailSet(fromElement, true)}.
322 SortedSet<E> tailSet(E fromElement); method in interface:NavigableSet
H A DTreeSet.java349 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:TreeSet
382 public SortedSet<E> tailSet(E fromElement) { method in class:TreeSet
383 return tailSet(fromElement, true);
H A DTreeMap.java1168 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:TreeMap.KeySet
1177 public SortedSet<E> tailSet(E fromElement) { method in class:TreeMap.KeySet
1178 return tailSet(fromElement, true);
H A DCollections.java1181 * <tt>subSet</tt>, <tt>headSet</tt>, or <tt>tailSet</tt> views, result in
1215 public SortedSet<E> tailSet(E fromElement) { method in class:Collections.UnmodifiableSortedSet
1216 return new UnmodifiableSortedSet<>(ss.tailSet(fromElement));
1229 * {@code subSet}, {@code headSet}, or {@code tailSet} views, result in
1306 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:Collections.UnmodifiableNavigableSet
1308 ns.tailSet(fromElement, inclusive));
2196 * <tt>headSet</tt>, or <tt>tailSet</tt> views.
2265 public SortedSet<E> tailSet(E fromElement) { method in class:Collections.SynchronizedSortedSet
2267 return new SynchronizedSortedSet<>(ss.tailSet(fromElement),mutex);
2287 * {@code headSet}, or {@code tailSet} view
2369 public NavigableSet<E> tailSet(E fromElement) { method in class:Collections.SynchronizedNavigableSet
2387 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:Collections.SynchronizedNavigableSet
3338 public SortedSet<E> tailSet(E fromElement) { method in class:Collections.CheckedSortedSet
3408 public NavigableSet<E> tailSet(E fromElement) { method in class:Collections.CheckedNavigableSet
3420 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:Collections.CheckedNavigableSet
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListSet.java437 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:ConcurrentSkipListSet
465 public NavigableSet<E> tailSet(E fromElement) { method in class:ConcurrentSkipListSet
466 return tailSet(fromElement, true);
H A DConcurrentSkipListMap.java2417 public NavigableSet<K> tailSet(K fromElement, boolean inclusive) { method in class:ConcurrentSkipListMap.KeySet
2426 public NavigableSet<K> tailSet(K fromElement) { method in class:ConcurrentSkipListMap.KeySet
2427 return tailSet(fromElement, true);

Completed in 226 milliseconds