Interface NavigableSet<E>
A NavigableSet may be accessed and traversed in either ascending or descending order. The descendingSet() method returns a view of the set with the senses of all relational and directional methods inverted. The performance of ascending operations and views is likely to be faster than that of descending ones. This interface additionally defines methods pollFirst() and pollLast() that return and remove the lowest and highest element, if one exists, else returning null. Methods subSet(E, boolean, E, boolean), headSet(E, boolean), and tailSet(E, boolean) differ from the like-named SortedSet methods in accepting additional arguments describing whether lower and upper bounds are inclusive versus exclusive. Subsets of any NavigableSet must implement the NavigableSet interface.
The return values of navigation methods may be ambiguous in implementations that permit null elements. However, even in this case the result can be disambiguated by checking contains(null). To avoid such issues, implementations of this interface are encouraged to not permit insertion of null elements. (Note that sorted sets of Comparable elements intrinsically do not permit null.)
Methods subSet(E, E), headSet(E), and tailSet(E) are specified to return SortedSet to allow existing implementations of SortedSet to be compatibly retrofitted to implement NavigableSet, but extensions and implementations of this interface are encouraged to override these methods to return NavigableSet.
This interface is a member of the Java Collections Framework.
-
Method Summary
All MethodsInstance MethodsAbstract MethodsDefault MethodsModifier and TypeMethodDescriptionReturns the least element in this set greater than or equal to the given element, or null if there is no such element.Returns an iterator over the elements in this set, in descending order.Returns a reverse order view of the elements contained in this set.Returns the greatest element in this set less than or equal to the given element, or null if there is no such element.Returns a view of the portion of this set whose elements are strictly less than toElement.Returns a view of the portion of this set whose elements are less than (or equal to, if inclusive is true) toElement.Returns the least element in this set strictly greater than the given element, or null if there is no such element.iterator()Returns an iterator over the elements in this set, in ascending order.Returns the greatest element in this set strictly less than the given element, or null if there is no such element.Retrieves and removes the first (lowest) element, or returns null if this set is empty (optional operation).pollLast()Retrieves and removes the last (highest) element, or returns null if this set is empty (optional operation).default ERemoves and returns the first element of this collection (optional operation).default ERemoves and returns the last element of this collection (optional operation).default NavigableSet<E>reversed()Returns a reverse-ordered view of this collection.Returns a view of the portion of this set whose elements range from fromElement to toElement.Returns a view of the portion of this set whose elements range from fromElement, inclusive, to toElement, exclusive.Returns a view of the portion of this set whose elements are greater than or equal to fromElement.Returns a view of the portion of this set whose elements are greater than (or equal to, if inclusive is true) fromElement.Methods declared in interface Collection
parallelStream, removeIf, stream, toArrayModifier and TypeMethodDescriptionReturns a possibly parallel Stream with this collection as its source.default booleanRemoves all of the elements of this collection that satisfy the given predicate (optional operation).stream()Returns a sequential Stream with this collection as its source.default <T> T[]toArray(IntFunction<T[]> generator)Returns an array containing all of the elements in this collection, using the provided generator function to allocate the returned array.Methods declared in interface Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArrayModifier and TypeMethodDescriptionbooleanAdds the specified element to this set if it is not already present (optional operation).booleanAdds all of the elements in the specified collection to this set if they're not already present (optional operation).voidclear()Removes all of the elements from this set (optional operation).booleanReturns true if this set contains the specified element.booleancontainsAll(Collection<?> c)Returns true if this set contains all of the elements of the specified collection.booleanCompares the specified object with this set for equality.inthashCode()Returns the hash code value for this set.booleanisEmpty()Returns true if this set contains no elements.booleanRemoves the specified element from this set if it is present (optional operation).booleanremoveAll(Collection<?> c)Removes from this set all of its elements that are contained in the specified collection (optional operation).booleanretainAll(Collection<?> c)Retains only the elements in this set that are contained in the specified collection (optional operation).intsize()Returns the number of elements in this set (its cardinality).Object[]toArray()Returns an array containing all of the elements in this set.<T> T[]toArray(T[] a)Returns an array containing all of the elements in this set; the runtime type of the returned array is that of the specified array.Methods declared in interface SortedSet
addFirst, addLast, comparator, first, getFirst, getLast, last, spliteratorModifier and TypeMethodDescriptiondefault voidThrows UnsupportedOperationException.default voidThrows UnsupportedOperationException.Comparator<? super E>Returns the comparator used to order the elements in this set, or null if this set uses the natural ordering of its elements.first()Returns the first (lowest) element currently in this set.default EgetFirst()Gets the first element of this collection.default EgetLast()Gets the last element of this collection.last()Returns the last (highest) element currently in this set.default Spliterator<E>Creates a Spliterator over the elements in this sorted set.
-
Method Details
-
lower
Returns the greatest element in this set strictly less than the given element, or null if there is no such element.Parameters: e - the value to match Returns: the greatest element less than e, or null if there is no such element Throws: ClassCastException - if the specified element cannot be compared with the elements currently in the set NullPointerException - if the specified element is null and this set does not permit null elements -
floor
Returns the greatest element in this set less than or equal to the given element, or null if there is no such element.Parameters: e - the value to match Returns: the greatest element less than or equal to e, or null if there is no such element Throws: ClassCastException - if the specified element cannot be compared with the elements currently in the set NullPointerException - if the specified element is null and this set does not permit null elements -
ceiling
Returns the least element in this set greater than or equal to the given element, or null if there is no such element.Parameters: e - the value to match Returns: the least element greater than or equal to e, or null if there is no such element Throws: ClassCastException - if the specified element cannot be compared with the elements currently in the set NullPointerException - if the specified element is null and this set does not permit null elements -
higher
Returns the least element in this set strictly greater than the given element, or null if there is no such element.Parameters: e - the value to match Returns: the least element greater than e, or null if there is no such element Throws: ClassCastException - if the specified element cannot be compared with the elements currently in the set NullPointerException - if the specified element is null and this set does not permit null elements -
pollFirst
E pollFirst()Retrieves and removes the first (lowest) element, or returns null if this set is empty (optional operation).Returns: the first element, or null if this set is empty Throws: UnsupportedOperationException - if the pollFirst operation is not supported by this collection -
pollLast
E pollLast()Retrieves and removes the last (highest) element, or returns null if this set is empty (optional operation).Returns: the last element, or null if this set is empty Throws: UnsupportedOperationException - if the pollLast operation is not supported by this collection -
iterator
-
descendingSet
NavigableSet<E> descendingSet()Returns a reverse order view of the elements contained in this set. The descending set is backed by this set, so changes to the set are reflected in the descending set, and vice-versa. If either set is modified while an iteration over either set is in progress (except through the iterator's own remove operation), the results of the iteration are undefined.Returns: a reverse order view of this setThe returned set has an ordering equivalent to Collections.reverseOrder(comparator()). The expression s.descendingSet().descendingSet() returns a view of s essentially equivalent to s.
-
descendingIterator
-
subSet
Returns a view of the portion of this set whose elements range from fromElement to toElement. If fromElement and toElement are equal, the returned set is empty unless fromInclusive and toInclusive are both true. The returned set is backed by this set, so changes in the returned set are reflected in this set, and vice-versa. The returned set supports all optional set operations that this set supports.Parameters: fromElement - low endpoint of the returned set fromInclusive - true if the low endpoint is to be included in the returned view toElement - high endpoint of the returned set toInclusive - true if the high endpoint is to be included in the returned view Returns: a view of the portion of this set whose elements range from fromElement, inclusive, to toElement, exclusive Throws: ClassCastException - if fromElement and toElement cannot be compared to one another using this set's comparator (or, if the set has no comparator, using natural ordering). Implementations may, but are not required to, throw this exception if fromElement or toElement cannot be compared to elements currently in the set. NullPointerException - if fromElement or toElement is null and this set does not permit null elements IllegalArgumentException - if fromElement is greater than toElement; or if this set itself has a restricted range, and fromElement or toElement lies outside the bounds of the range.The returned set will throw an IllegalArgumentException on an attempt to insert an element outside its range.
-
headSet
Returns a view of the portion of this set whose elements are less than (or equal to, if inclusive is true) toElement. The returned set is backed by this set, so changes in the returned set are reflected in this set, and vice-versa. The returned set supports all optional set operations that this set supports.Parameters: toElement - high endpoint of the returned set inclusive - true if the high endpoint is to be included in the returned view Returns: a view of the portion of this set whose elements are less than (or equal to, if inclusive is true) toElement Throws: ClassCastException - if toElement is not compatible with this set's comparator (or, if the set has no comparator, if toElement does not implement Comparable). Implementations may, but are not required to, throw this exception if toElement cannot be compared to elements currently in the set. NullPointerException - if toElement is null and this set does not permit null elements IllegalArgumentException - if this set itself has a restricted range, and toElement lies outside the bounds of the rangeThe returned set will throw an IllegalArgumentException on an attempt to insert an element outside its range.
-
tailSet
Returns a view of the portion of this set whose elements are greater than (or equal to, if inclusive is true) fromElement. The returned set is backed by this set, so changes in the returned set are reflected in this set, and vice-versa. The returned set supports all optional set operations that this set supports.Parameters: fromElement - low endpoint of the returned set inclusive - true if the low endpoint is to be included in the returned view Returns: a view of the portion of this set whose elements are greater than or equal to fromElement Throws: ClassCastException - if fromElement is not compatible with this set's comparator (or, if the set has no comparator, if fromElement does not implement Comparable). Implementations may, but are not required to, throw this exception if fromElement cannot be compared to elements currently in the set. NullPointerException - if fromElement is null and this set does not permit null elements IllegalArgumentException - if this set itself has a restricted range, and fromElement lies outside the bounds of the rangeThe returned set will throw an IllegalArgumentException on an attempt to insert an element outside its range.
-
subSet
Returns a view of the portion of this set whose elements range from fromElement, inclusive, to toElement, exclusive. (If fromElement and toElement are equal, the returned set is empty.) The returned set is backed by this set, so changes in the returned set are reflected in this set, and vice-versa. The returned set supports all optional set operations that this set supports.Specified by: subSet in interface SortedSet<E> Parameters: fromElement - low endpoint (inclusive) of the returned set toElement - high endpoint (exclusive) of the returned set Returns: a view of the portion of this set whose elements range from fromElement, inclusive, to toElement, exclusive Throws: ClassCastException - if fromElement and toElement cannot be compared to one another using this set's comparator (or, if the set has no comparator, using natural ordering). Implementations may, but are not required to, throw this exception if fromElement or toElement cannot be compared to elements currently in the set. NullPointerException - if fromElement or toElement is null and this set does not permit null elements IllegalArgumentException - if fromElement is greater than toElement; or if this set itself has a restricted range, and fromElement or toElement lies outside the bounds of the rangeThe returned set will throw an IllegalArgumentException on an attempt to insert an element outside its range.
Equivalent to subSet(fromElement, true, toElement, false).
-
headSet
Returns a view of the portion of this set whose elements are strictly less than toElement. The returned set is backed by this set, so changes in the returned set are reflected in this set, and vice-versa. The returned set supports all optional set operations that this set supports.Specified by: headSet in interface SortedSet<E> Parameters: toElement - high endpoint (exclusive) of the returned set Returns: a view of the portion of this set whose elements are strictly less than toElement Throws: ClassCastException - if toElement is not compatible with this set's comparator (or, if the set has no comparator, if toElement does not implement Comparable). Implementations may, but are not required to, throw this exception if toElement cannot be compared to elements currently in the set. NullPointerException - if toElement is null and this set does not permit null elements IllegalArgumentException - if this set itself has a restricted range, and toElement lies outside the bounds of the rangeThe returned set will throw an IllegalArgumentException on an attempt to insert an element outside its range.
Equivalent to headSet(toElement, false).
-
tailSet
Returns a view of the portion of this set whose elements are greater than or equal to fromElement. The returned set is backed by this set, so changes in the returned set are reflected in this set, and vice-versa. The returned set supports all optional set operations that this set supports.Specified by: tailSet in interface SortedSet<E> Parameters: fromElement - low endpoint (inclusive) of the returned set Returns: a view of the portion of this set whose elements are greater than or equal to fromElement Throws: ClassCastException - if fromElement is not compatible with this set's comparator (or, if the set has no comparator, if fromElement does not implement Comparable). Implementations may, but are not required to, throw this exception if fromElement cannot be compared to elements currently in the set. NullPointerException - if fromElement is null and this set does not permit null elements IllegalArgumentException - if this set itself has a restricted range, and fromElement lies outside the bounds of the rangeThe returned set will throw an IllegalArgumentException on an attempt to insert an element outside its range.
Equivalent to tailSet(fromElement, true).
-
removeFirst
Removes and returns the first element of this collection (optional operation).Specified by: removeFirst in interface SequencedCollection<E> Specified by: removeFirst in interface SortedSet<E> Implementation Requirements: If this set is not empty, the implementation in this interface returns the result of calling the pollFirst method. Otherwise, it throws NoSuchElementException. Returns: the removed element Throws: NoSuchElementException - if this collection is empty UnsupportedOperationException - if this collection implementation does not support this operation Since: 21 -
removeLast
Removes and returns the last element of this collection (optional operation).Specified by: removeLast in interface SequencedCollection<E> Specified by: removeLast in interface SortedSet<E> Implementation Requirements: If this set is not empty, the implementation in this interface returns the result of calling the pollLast method. Otherwise, it throws NoSuchElementException. Returns: the removed element Throws: NoSuchElementException - if this collection is empty UnsupportedOperationException - if this collection implementation does not support this operation Since: 21 -
reversed
Returns a reverse-ordered view of this collection. The encounter order of elements in the returned view is the inverse of the encounter order of elements in this collection. The reverse ordering affects all order-sensitive operations, including those on the view collections of the returned view. If the collection implementation permits modifications to this view, the modifications "write through" to the underlying collection. Changes to the underlying collection might or might not be visible in this reversed view, depending upon the implementation.Specified by: reversed in interface SequencedCollection<E> Specified by: reversed in interface SequencedSet<E> Specified by: reversed in interface SortedSet<E> Implementation Requirements: The implementation in this interface returns the result of calling the descendingSet method. Returns: a reverse-ordered view of this collection, as a NavigableSet Since: 21This method is equivalent to descendingSet.
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples. Other versions.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2026, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.