Uses of Interface
java.util.SequencedCollection
Package
Description
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.util
Modifier 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.Modifier 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.Modifier 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
.Modifier 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
Modifier 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.Modifier 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
Modifier and TypeClassDescriptionclass
Represents a list of values for attributes of an MBean. -
Uses of SequencedCollection in javax.management.relation
Modifier 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.