to top
Android APIs
public interface

SortedSet

implements Set<E>
java.util.SortedSet<E>
Known Indirect Subclasses

Class Overview

SortedSet is a Set which iterates over its elements in a sorted order. The order is determined either by the elements natural ordering, or by a Comparator which is passed into a concrete implementation at construction time. All elements in this set must be mutually comparable. The ordering in this set must be consistent with equals of its elements.

Summary

Public Methods
abstract Comparator<? super E> comparator()
Returns the comparator used to compare elements in this SortedSet.
abstract E first()
Returns the first element in this SortedSet.
abstract SortedSet<E> headSet(E end)
Returns a SortedSet of the specified portion of this SortedSet which contains elements less than the end element.
abstract E last()
Returns the last element in this SortedSet.
abstract SortedSet<E> subSet(E start, E end)
Returns a SortedSet of the specified portion of this SortedSet which contains elements greater or equal to the start element but less than the end element.
abstract SortedSet<E> tailSet(E start)
Returns a SortedSet of the specified portion of this SortedSet which contains elements greater or equal to the start element.
[Expand]
Inherited Methods
From interface java.lang.Iterable
From interface java.util.Collection
From interface java.util.Set

Public Methods

public abstract Comparator<? super E> comparator ()

Added in API level 1

Returns the comparator used to compare elements in this SortedSet.

Returns
  • a comparator or null if the natural ordering is used.

public abstract E first ()

Added in API level 1

Returns the first element in this SortedSet. The first element is the lowest element.

Returns
  • the first element.
Throws
NoSuchElementException when this SortedSet is empty.

public abstract SortedSet<E> headSet (E end)

Added in API level 1

Returns a SortedSet of the specified portion of this SortedSet which contains elements less than the end element. The returned SortedSet is backed by this SortedSet so changes to one set are reflected by the other.

Parameters
end the end element.
Returns
  • a subset where the elements are less than end.
Throws
ClassCastException when the class of the end element is inappropriate for this SubSet.
NullPointerException when the end element is null and this SortedSet does not support null elements.

public abstract E last ()

Added in API level 1

Returns the last element in this SortedSet. The last element is the highest element.

Returns
  • the last element.
Throws
NoSuchElementException when this SortedSet is empty.

public abstract SortedSet<E> subSet (E start, E end)

Added in API level 1

Returns a SortedSet of the specified portion of this SortedSet which contains elements greater or equal to the start element but less than the end element. The returned SortedSet is backed by this SortedMap so changes to one set are reflected by the other.

Parameters
start the start element.
end the end element.
Returns
  • a subset where the elements are greater or equal to start and less than end.
Throws
ClassCastException when the class of the start or end element is inappropriate for this SubSet.
NullPointerException when the start or end element is null and this SortedSet does not support null elements.
IllegalArgumentException when the start element is greater than the end element.

public abstract SortedSet<E> tailSet (E start)

Added in API level 1

Returns a SortedSet of the specified portion of this SortedSet which contains elements greater or equal to the start element. The returned SortedSet is backed by this SortedSet so changes to one set are reflected by the other.

Parameters
start the start element.
Returns
  • a subset where the elements are greater or equal to start .
Throws
ClassCastException when the class of the start element is inappropriate for this SubSet.
NullPointerException when the start element is null and this SortedSet does not support null elements.