Interface SequencedSet<E>

Type Parameters:
E - the type of elements in this sequenced set
All Superinterfaces:
Collection<E>, Iterable<E>, SequencedCollection<E>, Set<E>
All Known Subinterfaces:
NavigableSet<E>, SortedSet<E>
All Known Implementing Classes:
ConcurrentSkipListSet, LinkedHashSet, TreeSet

public interface SequencedSet<E> extends SequencedCollection<E>, Set<E>
A collection that is both a SequencedCollection and a Set. As such, it can be thought of either as a Set that also has a well-defined encounter order, or as a SequencedCollection that also has unique elements.

This interface has the same requirements on the equals and hashCode methods as defined by Set.equals and Set.hashCode. Thus, a Set and a SequencedSet will compare equals if and only if they have equal elements, irrespective of ordering.

SequencedSet defines the reversed() method, which provides a reverse-ordered view of this set. The only difference from the SequencedCollection.reversed method is that the return type of SequencedSet.reversed is SequencedSet.

This class is a member of the Java Collections Framework.

Since:
21
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a reverse-ordered view of this collection.

    Methods declared in interface Collection

    parallelStream, removeIf, stream, toArray
    Modifier and Type
    Method
    Description
    default Stream<E>
    Returns a possibly parallel Stream with this collection as its source.
    default boolean
    removeIf(Predicate<? super E> filter)
    Removes all of the elements of this collection that satisfy the given predicate (optional operation).
    default Stream<E>
    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 Iterable

    forEach
    Modifier and Type
    Method
    Description
    default void
    forEach(Consumer<? super E> action)
    Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.

    Methods declared in interface SequencedCollection

    addFirst, addLast, getFirst, getLast, removeFirst, removeLast
    Modifier and Type
    Method
    Description
    default void
    Adds an element as the first element of this collection (optional operation).
    default void
    Adds an element as the last element of this collection (optional operation).
    default E
    Gets the first element of this collection.
    default E
    Gets the last element of this collection.
    default E
    Removes and returns the first element of this collection (optional operation).
    default E
    Removes and returns the last element of this collection (optional operation).

    Methods declared in interface Set

    add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArray
    Modifier and Type
    Method
    Description
    boolean
    add(E e)
    Adds the specified element to this set if it is not already present (optional operation).
    boolean
    addAll(Collection<? extends E> c)
    Adds all of the elements in the specified collection to this set if they're not already present (optional operation).
    void
    Removes all of the elements from this set (optional operation).
    boolean
    Returns true if this set contains the specified element.
    boolean
    Returns true if this set contains all of the elements of the specified collection.
    boolean
    Compares the specified object with this set for equality.
    int
    Returns the hash code value for this set.
    boolean
    Returns true if this set contains no elements.
    Returns an iterator over the elements in this set.
    boolean
    Removes the specified element from this set if it is present (optional operation).
    boolean
    Removes from this set all of its elements that are contained in the specified collection (optional operation).
    boolean
    Retains only the elements in this set that are contained in the specified collection (optional operation).
    int
    Returns the number of elements in this set (its cardinality).
    default Spliterator<E>
    Creates a Spliterator over the elements in this set.
    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.
  • Method Details

    • reversed

      SequencedSet<E> 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>
      Returns:
      a reverse-ordered view of this collection, as a SequencedSet