Uses of Interface
java.util.SequencedCollection
Packages that use SequencedCollection
Package
Description
Provides specific components, transformations, and tools built on top of the
java.lang.classfile
PREVIEW library.Contains the collections framework, some internationalization support classes,
a service loader, properties, random number generation, string parsing
and scanning classes, base64 encoding and decoding, a bit array, and
several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
Provides the core classes for the Java Management Extensions.
Provides the definition of the Relation Service.
-
Uses of SequencedCollection in java.lang.classfile.componentsPREVIEW
Subinterfaces of SequencedCollection in java.lang.classfile.componentsPREVIEWModifier and TypeInterfaceDescriptionstatic interface
Preview.A tree node holdingList
of nested nodes. -
Uses of SequencedCollection in java.util
Subinterfaces of SequencedCollection in java.utilModifier and TypeInterfaceDescriptioninterface
Deque<E>
A linear collection that supports element insertion and removal at both ends.interface
List<E>
An ordered collection, where the user has precise control over where in the list each element is inserted.interface
NavigableSet<E>
ASortedSet
extended with navigation methods reporting closest matches for given search targets.interface
SequencedSet<E>
A collection that is both aSequencedCollection
and aSet
.interface
SortedSet<E>
ASet
that further provides a total ordering on its elements.Classes in java.util that implement SequencedCollectionModifier and TypeClassDescriptionclass
AbstractList<E>
This class provides a skeletal implementation of theList
interface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).class
This class provides a skeletal implementation of theList
interface to minimize the effort required to implement this interface backed by a "sequential access" data store (such as a linked list).class
ArrayDeque<E>
Resizable-array implementation of theDeque
interface.class
ArrayList<E>
Resizable-array implementation of theList
interface.class
Hash table and linked list implementation of theSet
interface, with well-defined encounter order.class
LinkedList<E>
Doubly-linked list implementation of theList
andDeque
interfaces.class
Stack<E>
TheStack
class represents a last-in-first-out (LIFO) stack of objects.class
TreeSet<E>
ANavigableSet
implementation based on aTreeMap
.class
Vector<E>
TheVector
class implements a growable array of objects.Methods in java.util that return SequencedCollectionModifier and TypeMethodDescriptionSequencedCollection.reversed()
Returns a reverse-ordered view of this collection.LinkedHashMap.sequencedValues()
Returns aSequencedCollection
view of this map'svalues
collection.default SequencedCollection
<V> SequencedMap.sequencedValues()
Returns aSequencedCollection
view of this map'svalues
collection.static <T> SequencedCollection
<T> Collections.unmodifiableSequencedCollection
(SequencedCollection<? extends T> c) Returns an unmodifiable view of the specifiedSequencedCollection
.Methods in java.util with parameters of type SequencedCollectionModifier and TypeMethodDescriptionstatic <T> SequencedCollection
<T> Collections.unmodifiableSequencedCollection
(SequencedCollection<? extends T> c) Returns an unmodifiable view of the specifiedSequencedCollection
. -
Uses of SequencedCollection in java.util.concurrent
Subinterfaces of SequencedCollection in java.util.concurrentModifier and TypeInterfaceDescriptioninterface
ADeque
that additionally supports blocking operations that wait for the deque to become non-empty when retrieving an element, and wait for space to become available in the deque when storing an element.Classes in java.util.concurrent that implement SequencedCollectionModifier and TypeClassDescriptionclass
An unbounded concurrent deque based on linked nodes.class
A scalable concurrentNavigableSet
implementation based on aConcurrentSkipListMap
.class
A thread-safe variant ofArrayList
in which all mutative operations (add
,set
, and so on) are implemented by making a fresh copy of the underlying array.class
An optionally-bounded blocking deque based on linked nodes. -
Uses of SequencedCollection in javax.management
Classes in javax.management that implement SequencedCollectionModifier and TypeClassDescriptionclass
Represents a list of values for attributes of an MBean. -
Uses of SequencedCollection in javax.management.relation
Classes in javax.management.relation that implement SequencedCollectionModifier and TypeClassDescriptionclass
A RoleList represents a list of roles (Role objects).class
A RoleUnresolvedList represents a list of RoleUnresolved objects, representing roles not retrieved from a relation due to a problem encountered when trying to access (read or write) the roles.