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

/openjdk7/jdk/src/share/classes/java/util/
H A DSortedSet.java122 * from <tt>fromElement</tt>, inclusive, to <tt>toElement</tt>,
123 * exclusive. (If <tt>fromElement</tt> and <tt>toElement</tt> are
132 * @param fromElement low endpoint (inclusive) of the returned set
135 * <tt>fromElement</tt>, inclusive, to <tt>toElement</tt>, exclusive
136 * @throws ClassCastException if <tt>fromElement</tt> and
140 * to, throw this exception if <tt>fromElement</tt> or
143 * @throws NullPointerException if <tt>fromElement</tt> or
146 * @throws IllegalArgumentException if <tt>fromElement</tt> is
148 * has a restricted range, and <tt>fromElement</tt> or
151 SortedSet<E> subSet(E fromElement, argument
205 tailSet(E fromElement) argument
[all...]
H A DNavigableSet.java193 * {@code fromElement} to {@code toElement}. If {@code fromElement} and
203 * @param fromElement low endpoint of the returned set
210 * {@code fromElement}, inclusive, to {@code toElement}, exclusive
211 * @throws ClassCastException if {@code fromElement} and
215 * to, throw this exception if {@code fromElement} or
218 * @throws NullPointerException if {@code fromElement} or
221 * @throws IllegalArgumentException if {@code fromElement} is
223 * has a restricted range, and {@code fromElement} or
226 NavigableSet<E> subSet(E fromElement, boolea argument
285 tailSet(E fromElement, boolean inclusive) argument
296 subSet(E fromElement, E toElement) argument
318 tailSet(E fromElement) argument
[all...]
H A DTreeSet.java317 * @throws NullPointerException if {@code fromElement} or {@code toElement}
323 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, argument
325 return new TreeSet<>(m.subMap(fromElement, fromInclusive,
343 * @throws NullPointerException if {@code fromElement} is null and
349 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { argument
350 return new TreeSet<>(m.tailMap(fromElement, inclusive));
355 * @throws NullPointerException if {@code fromElement} or
360 public SortedSet<E> subSet(E fromElement, E toElement) { argument
361 return subSet(fromElement, true, toElement, false);
377 * @throws NullPointerException if {@code fromElement} i
382 tailSet(E fromElement) argument
[all...]
H A DCollections.java1160 public SortedSet<E> subSet(E fromElement, E toElement) { argument
1161 return new UnmodifiableSortedSet<>(ss.subSet(fromElement,toElement));
1166 public SortedSet<E> tailSet(E fromElement) { argument
1167 return new UnmodifiableSortedSet<>(ss.tailSet(fromElement));
1788 public SortedSet<E> subSet(E fromElement, E toElement) { argument
1791 ss.subSet(fromElement, toElement), mutex);
1799 public SortedSet<E> tailSet(E fromElement) { argument
1801 return new SynchronizedSortedSet<>(ss.tailSet(fromElement),mutex);
2456 public SortedSet<E> subSet(E fromElement, E toElement) { argument
2457 return checkedSortedSet(ss.subSet(fromElement,toElemen
2462 tailSet(E fromElement) argument
[all...]
H A DTreeMap.java1067 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, argument
1069 return new KeySet<>(m.subMap(fromElement, fromInclusive,
1075 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { argument
1076 return new KeySet<>(m.tailMap(fromElement, inclusive));
1078 public SortedSet<E> subSet(E fromElement, E toElement) { argument
1079 return subSet(fromElement, true, toElement, false);
1084 public SortedSet<E> tailSet(E fromElement) { argument
1085 return tailSet(fromElement, true);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListSet.java399 * @throws NullPointerException if {@code fromElement} or
403 public NavigableSet<E> subSet(E fromElement, argument
408 (m.subMap(fromElement, fromInclusive,
423 * @throws NullPointerException if {@code fromElement} is null
426 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { argument
427 return new ConcurrentSkipListSet<E>(m.tailMap(fromElement, inclusive));
432 * @throws NullPointerException if {@code fromElement} or
436 public NavigableSet<E> subSet(E fromElement, E toElement) { argument
437 return subSet(fromElement, true, toElement, false);
451 * @throws NullPointerException if {@code fromElement} i
454 tailSet(E fromElement) argument
[all...]
H A DConcurrentSkipListMap.java2354 public NavigableSet<E> subSet(E fromElement, argument
2358 return new KeySet<E>(m.subMap(fromElement, fromInclusive,
2364 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { argument
2365 return new KeySet<E>(m.tailMap(fromElement, inclusive));
2367 public NavigableSet<E> subSet(E fromElement, E toElement) { argument
2368 return subSet(fromElement, true, toElement, false);
2373 public NavigableSet<E> tailSet(E fromElement) { argument
2374 return tailSet(fromElement, true);

Completed in 122 milliseconds