| Package | Description |
|---|---|
| java.awt |
Contains all of the classes for creating user interfaces and for painting graphics and images.
|
| java.beans.beancontext |
Provides classes and interfaces relating to bean context.
|
| java.security |
Provides the classes and interfaces for the security framework.
|
| java.security.cert |
Provides classes and interfaces for parsing and managing certificates, certificate revocation lists (CRLs), and certification paths.
|
| java.util |
Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).
|
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| java.util.concurrent.locks |
Interfaces and classes providing a framework for locking and waiting for conditions that is distinct from built-in synchronization and monitors.
|
| java.util.jar |
Provides classes for reading and writing the JAR (Java ARchive) file format, which is based on the standard ZIP file format with an optional manifest file.
|
| java.util.stream |
Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections.
|
| javax.management |
Provides the core classes for the Java Management Extensions.
|
| javax.management.openmbean |
Provides the open data types and Open MBean descriptor classes.
|
| javax.management.relation |
Provides the definition of the Relation Service.
|
| javax.net.ssl |
Provides classes for the secure socket package.
|
| javax.print.attribute.standard |
Package javax.print.attribute.standard contains classes for specific printing attributes.
|
| javax.script |
The scripting API consists of interfaces and classes that define Java
TM Scripting Engines and provides a framework for their use in Java applications.
|
| javax.sql.rowset |
Standard interfaces and base classes for JDBC
RowSet implementations.
|
| Modifier and Type | Method and Description |
|---|---|
Collection |
RenderingHints.values()
Returns a
Collection view of the values contained in this
RenderinHints.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
BeanContext
The BeanContext acts a logical hierarchical container for JavaBeans.
|
interface |
BeanContextServices
The BeanContextServices interface provides a mechanism for a BeanContext to expose generic "services" to the BeanContextChild objects within.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BeanContextServicesSupport
This helper class provides a utility implementation of the java.beans.beancontext.BeanContextServices interface.
|
class |
BeanContextSupport
This helper class provides a utility implementation of the java.beans.beancontext.BeanContext interface.
|
| Modifier and Type | Field and Description |
|---|---|
protected Collection |
BeanContextMembershipEvent.children
The list of children affected by this event notification.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
BeanContextSupport.addAll(Collection
add Collection to set of Children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field
|
boolean |
BeanContextSupport.containsAll(Collection
Tests to see if all objects in the specified
Collection are children of this
BeanContext.
|
protected void |
BeanContextSupport.deserialize(ObjectInputStream
used by readObject to deserialize a collection.
|
boolean |
BeanContextSupport.removeAll(Collection
remove all specified children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field
|
boolean |
BeanContextSupport.retainAll(Collection
retain only specified children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field
|
protected void |
BeanContextSupport.serialize(ObjectOutputStream
Used by writeObject to serialize a Collection.
|
| Constructor and Description | |
|---|---|
BeanContextMembershipEvent(BeanContext
Contruct a BeanContextMembershipEvent
|
| Modifier and Type | Method and Description |
|---|---|
Collection |
Provider.values()
Returns an unmodifiable Collection view of the property values contained in this provider.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Collection |
CertificateFactorySpi.engineGenerateCertificates(InputStream
Returns a (possibly empty) collection view of the certificates read from the given input stream
inStream.
|
abstract Collection |
CertificateFactorySpi.engineGenerateCRLs(InputStream
Returns a (possibly empty) collection view of the CRLs read from the given input stream
inStream.
|
abstract Collection |
CertStoreSpi.engineGetCertificates(CertSelector
Returns a
Collection of
Certificates that match the specified selector.
|
abstract Collection |
CertStoreSpi.engineGetCRLs(CRLSelector
Returns a
Collection of
CRLs that match the specified selector.
|
Collection |
CertificateFactory.generateCertificates(InputStream
Returns a (possibly empty) collection view of the certificates read from the given input stream
inStream.
|
Collection |
CertificateFactory.generateCRLs(InputStream
Returns a (possibly empty) collection view of the CRLs read from the given input stream
inStream.
|
Collection |
CertStore.getCertificates(CertSelector
Returns a
Collection of
Certificates that match the specified selector.
|
Collection |
CollectionCertStoreParameters.getCollection()
Returns the
Collection from which
Certificates and
CRLs are retrieved.
|
Collection |
CertStore.getCRLs(CRLSelector
Returns a
Collection of
CRLs that match the specified selector.
|
Collection |
X509Certificate.getIssuerAlternativeNames()
Gets an immutable collection of issuer alternative names from the
IssuerAltName extension, (OID = 2.5.29.18).
|
Collection |
X509CRLSelector.getIssuerNames()
Returns a copy of the issuerNames criterion.
|
Collection |
X509CRLSelector.getIssuers()
Returns the issuerNames criterion.
|
Collection |
X509CertSelector.getPathToNames()
Returns a copy of the pathToNames criterion.
|
Collection |
X509Certificate.getSubjectAlternativeNames()
Gets an immutable collection of subject alternative names from the
SubjectAltName extension, (OID = 2.5.29.17).
|
Collection |
X509CertSelector.getSubjectAlternativeNames()
Returns a copy of the subjectAlternativeNames criterion.
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
PKIXCertPathChecker.check(Certificate
Performs the check(s) on the specified certificate using its internal state and removes any critical extensions that it processes from the specified collection of OID strings that represent the unresolved critical extensions.
|
void |
X509CRLSelector.setIssuerNames(Collection
Note: use
X509CRLSelector |
void |
X509CRLSelector.setIssuers(Collection
Sets the issuerNames criterion.
|
void |
X509CertSelector.setPathToNames(Collection
Sets the pathToNames criterion.
|
void |
X509CertSelector.setSubjectAlternativeNames(Collection
Sets the subjectAlternativeNames criterion.
|
| Constructor and Description | |
|---|---|
CollectionCertStoreParameters(Collection
Creates an instance of
CollectionCertStoreParameters which will allow certificates and CRLs to be retrieved from the specified
Collection.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
Deque<E>
A linear collection that supports element insertion and removal at both ends.
|
interface |
List<E>
An ordered collection (also known as a
sequence).
|
interface |
NavigableSet<E>
A
SortedSet extended with navigation methods reporting closest matches for given search targets.
|
interface |
Queue<E>
A collection designed for holding elements prior to processing.
|
interface |
Set<E>
A collection that contains no duplicate elements.
|
interface |
SortedSet<E>
A
Set that further provides a
total ordering on its elements.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractCollection<E>
This class provides a skeletal implementation of the
Collection interface, to minimize the effort required to implement this interface.
|
class |
AbstractList<E>
This class provides a skeletal implementation of the
List interface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).
|
class |
AbstractQueue<E>
This class provides skeletal implementations of some
Queue operations.
|
class |
AbstractSequentialList<E>
This class provides a skeletal implementation of the
List interface to minimize the effort required to implement this interface backed by a "sequential access" data store (such as a linked list).
|
class |
AbstractSet<E>
This class provides a skeletal implementation of the
Set interface to minimize the effort required to implement this interface.
|
class |
ArrayDeque<E>
Resizable-array implementation of the
Deque interface.
|
class |
ArrayList<E>
Resizable-array implementation of the
List interface.
|
class |
EnumSet<E extends Enum
A specialized
Set implementation for use with enum types.
|
class |
HashSet<E>
This class implements the
Set interface, backed by a hash table (actually a
HashMap instance).
|
class |
LinkedHashSet<E>
Hash table and linked list implementation of the
Set interface, with predictable iteration order.
|
class |
LinkedList<E>
Doubly-linked list implementation of the
List and
Deque interfaces.
|
class |
PriorityQueue<E>
An unbounded priority
queue based on a priority heap.
|
class |
Stack<E>
The
Stack class represents a last-in-first-out (LIFO) stack of objects.
|
class |
TreeSet<E>
A
NavigableSet implementation based on a
TreeMap.
|
class |
Vector<E>
The
Vector class implements a growable array of objects.
|
| Modifier and Type | Method and Description |
|---|---|
static <E> Collection |
Collections.checkedCollection(Collection
Returns a dynamically typesafe view of the specified collection.
|
static <T> Collection |
Collections.synchronizedCollection(Collection
Returns a synchronized (thread-safe) collection backed by the specified collection.
|
static <T> Collection |
Collections.unmodifiableCollection(Collection
Returns an unmodifiable view of the specified collection.
|
Collection |
SortedMap.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
Map.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
EnumMap.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
AbstractMap.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
HashMap.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
LinkedHashMap.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
Hashtable.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
WeakHashMap.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
IdentityHashMap.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
TreeMap.values()
Returns a
Collection view of the values contained in this map.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
Vector.addAll(Collection
Appends all of the elements in the specified Collection to the end of this Vector, in the order that they are returned by the specified Collection's Iterator.
|
boolean |
Collection.addAll(Collection
Adds all of the elements in the specified collection to this collection (optional operation).
|
boolean |
Set.addAll(Collection
Adds all of the elements in the specified collection to this set if they're not already present (optional operation).
|
boolean |
AbstractCollection.addAll(Collection
Adds all of the elements in the specified collection to this collection (optional operation).
|
boolean |
List.addAll(Collection
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator (optional operation).
|
boolean |
TreeSet.addAll(Collection
Adds all of the elements in the specified collection to this set.
|
boolean |
AbstractQueue.addAll(Collection
Adds all of the elements in the specified collection to this queue.
|
boolean |
ArrayList.addAll(Collection
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's Iterator.
|
boolean |
LinkedList.addAll(Collection
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.
|
static <T> boolean |
Collections.addAll(Collection
Adds all of the specified elements to the specified collection.
|
boolean |
AbstractList.addAll(int index, Collection
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
|
boolean |
Vector.addAll(int index, Collection
Inserts all of the elements in the specified Collection into this Vector at the specified position.
|
boolean |
AbstractSequentialList.addAll(int index, Collection
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
|
boolean |
List.addAll(int index, Collection
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
|
boolean |
ArrayList.addAll(int index, Collection
Inserts all of the elements in the specified collection into this list, starting at the specified position.
|
boolean |
LinkedList.addAll(int index, Collection
Inserts all of the elements in the specified collection into this list, starting at the specified position.
|
static <E> Collection |
Collections.checkedCollection(Collection
Returns a dynamically typesafe view of the specified collection.
|
boolean |
Vector.containsAll(Collection
Returns true if this Vector contains all of the elements in the specified Collection.
|
boolean |
Collection.containsAll(Collection
Returns
true if this collection contains all of the elements in the specified collection.
|
boolean |
Set.containsAll(Collection
Returns
true if this set contains all of the elements of the specified collection.
|
boolean |
AbstractCollection.containsAll(Collection
Returns
true if this collection contains all of the elements in the specified collection.
|
boolean |
List.containsAll(Collection
Returns
true if this list contains all of the elements of the specified collection.
|
static <E extends Enum |
EnumSet.copyOf(Collection
Creates an enum set initialized from the specified collection.
|
static boolean |
Collections.disjoint(Collection
Returns
true if the two specified collections have no elements in common.
|
static boolean |
Collections.disjoint(Collection
Returns
true if the two specified collections have no elements in common.
|
static <T> Enumeration |
Collections.enumeration(Collection
Returns an enumeration over the specified collection.
|
static List |
Locale.filter(List
Returns a list of matching
Locale instances using the filtering mechanism defined in RFC 4647.
|
static List |
Locale.filter(List
Returns a list of matching
Locale instances using the filtering mechanism defined in RFC 4647.
|
static List |
Locale.filterTags(List
Returns a list of matching languages tags using the basic filtering mechanism defined in RFC 4647.
|
static List |
Locale.filterTags(List
Returns a list of matching languages tags using the basic filtering mechanism defined in RFC 4647.
|
static int |
Collections.frequency(Collection
Returns the number of elements in the specified collection equal to the specified object.
|
static Locale |
Locale.lookup(List
Returns a
Locale instance for the best-matching language tag using the lookup mechanism defined in RFC 4647.
|
static String |
Locale.lookupTag(List
Returns the best-matching language tag using the lookup mechanism defined in RFC 4647.
|
static <T extends Object |
Collections.max(Collection
Returns the maximum element of the given collection, according to the
natural ordering of its elements.
|
static <T> T |
Collections.max(Collection
Returns the maximum element of the given collection, according to the order induced by the specified comparator.
|
static <T extends Object |
Collections.min(Collection
Returns the minimum element of the given collection, according to the
natural ordering of its elements.
|
static <T> T |
Collections.min(Collection
Returns the minimum element of the given collection, according to the order induced by the specified comparator.
|
boolean |
Vector.removeAll(Collection
Removes from this Vector all of its elements that are contained in the specified Collection.
|
boolean |
Collection.removeAll(Collection
Removes all of this collection's elements that are also contained in the specified collection (optional operation).
|
boolean |
Set.removeAll(Collection
Removes from this set all of its elements that are contained in the specified collection (optional operation).
|
boolean |
AbstractCollection.removeAll(Collection
Removes all of this collection's elements that are also contained in the specified collection (optional operation).
|
boolean |
List.removeAll(Collection
Removes from this list all of its elements that are contained in the specified collection (optional operation).
|
boolean |
ArrayList.removeAll(Collection
Removes from this list all of its elements that are contained in the specified collection.
|
boolean |
AbstractSet.removeAll(Collection
Removes from this set all of its elements that are contained in the specified collection (optional operation).
|
boolean |
Vector.retainAll(Collection
Retains only the elements in this Vector that are contained in the specified Collection.
|
boolean |
Collection.retainAll(Collection
Retains only the elements in this collection that are contained in the specified collection (optional operation).
|
boolean |
Set.retainAll(Collection
Retains only the elements in this set that are contained in the specified collection (optional operation).
|
boolean |
AbstractCollection.retainAll(Collection
Retains only the elements in this collection that are contained in the specified collection (optional operation).
|
boolean |
List.retainAll(Collection
Retains only the elements in this list that are contained in the specified collection (optional operation).
|
boolean |
ArrayList.retainAll(Collection
Retains only the elements in this list that are contained in the specified collection.
|
static <T> Spliterator |
Spliterators.spliterator(Collection
Creates a
Spliterator using the given collection's
iterator() as the source of elements, and reporting its
size() as its initial size.
|
static <T> Collection |
Collections.synchronizedCollection(Collection
Returns a synchronized (thread-safe) collection backed by the specified collection.
|
static <T> Collection |
Collections.unmodifiableCollection(Collection
Returns an unmodifiable view of the specified collection.
|
| Constructor and Description | |
|---|---|
ArrayDeque(Collection
Constructs a deque containing the elements of the specified collection, in the order they are returned by the collection's iterator.
|
|
ArrayList(Collection
Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
|
|
HashSet(Collection
Constructs a new set containing the elements in the specified collection.
|
|
LinkedHashSet(Collection
Constructs a new linked hash set with the same elements as the specified collection.
|
|
LinkedList(Collection
Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
|
|
PriorityQueue(Collection
Creates a
PriorityQueue containing the elements in the specified collection.
|
|
TreeSet(Collection
Constructs a new tree set containing the elements in the specified collection, sorted according to the
natural ordering of its elements.
|
|
Vector(Collection
Constructs a vector containing the elements of the specified collection, in the order they are returned by the collection's iterator.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
BlockingDeque<E>
A
Deque 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.
|
interface |
BlockingQueue<E>
A
Queue that additionally supports operations that wait for the queue to become non-empty when retrieving an element, and wait for space to become available in the queue when storing an element.
|
interface |
TransferQueue<E>
A
BlockingQueue in which producers may wait for consumers to receive elements.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ArrayBlockingQueue<E>
A bounded
blocking queue backed by an array.
|
static class |
ConcurrentHashMap
A view of a ConcurrentHashMap as a
Set of keys, in which additions may optionally be enabled by mapping to a common value.
|
class |
ConcurrentLinkedDeque<E>
An unbounded concurrent
deque based on linked nodes.
|
class |
ConcurrentLinkedQueue<E>
An unbounded thread-safe
queue based on linked nodes.
|
class |
ConcurrentSkipListSet<E>
A scalable concurrent
NavigableSet implementation based on a
ConcurrentSkipListMap.
|
class |
CopyOnWriteArrayList<E>
A thread-safe variant of
ArrayList in which all mutative operations (
add,
set, and so on) are implemented by making a fresh copy of the underlying array.
|
class |
CopyOnWriteArraySet<E>
A
Set that uses an internal
CopyOnWriteArrayList for all of its operations.
|
class |
DelayQueue<E extends Delayed
An unbounded
blocking queue of
Delayed elements, in which an element can only be taken when its delay has expired.
|
class |
LinkedBlockingDeque<E>
An optionally-bounded
blocking deque based on linked nodes.
|
class |
LinkedBlockingQueue<E>
An optionally-bounded
blocking queue based on linked nodes.
|
class |
LinkedTransferQueue<E>
An unbounded
TransferQueue based on linked nodes.
|
class |
PriorityBlockingQueue<E>
An unbounded
blocking queue that uses the same ordering rules as class
PriorityQueue and supplies blocking retrieval operations.
|
class |
SynchronousQueue<E>
A
blocking queue in which each insert operation must wait for a corresponding remove operation by another thread, and vice versa.
|
| Modifier and Type | Method and Description |
|---|---|
protected Collection |
Semaphore.getQueuedThreads()
Returns a collection containing threads that may be waiting to acquire.
|
static <T extends ForkJoinTask |
ForkJoinTask.invokeAll(Collection
Forks all tasks in the specified collection, returning when
isDone holds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown.
|
Collection |
ConcurrentHashMap.values()
Returns a
Collection view of the values contained in this map.
|
Collection |
ConcurrentSkipListMap.values()
Returns a
Collection view of the values contained in this map.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
ConcurrentLinkedQueue.addAll(Collection
Appends all of the elements in the specified collection to the end of this queue, in the order that they are returned by the specified collection's iterator.
|
boolean |
ConcurrentLinkedDeque.addAll(Collection
Appends all of the elements in the specified collection to the end of this deque, in the order that they are returned by the specified collection's iterator.
|
boolean |
CopyOnWriteArraySet.addAll(Collection
Adds all of the elements in the specified collection to this set if they're not already present.
|
boolean |
CopyOnWriteArrayList.addAll(Collection
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.
|
boolean |
ConcurrentHashMap.KeySetView.addAll(Collection
Adds all of the elements in the specified collection to this set, as if by calling
ConcurrentHashMap on each one.
|
boolean |
CopyOnWriteArrayList.addAll(int index, Collection
Inserts all of the elements in the specified collection into this list, starting at the specified position.
|
int |
CopyOnWriteArrayList.addAllAbsent(Collection
Appends all of the elements in the specified collection that are not already contained in this list, to the end of this list, in the order that they are returned by the specified collection's iterator.
|
boolean |
SynchronousQueue.containsAll(Collection
Returns
false unless the given collection is empty.
|
boolean |
CopyOnWriteArraySet.containsAll(Collection
Returns
true if this set contains all of the elements of the specified collection.
|
boolean |
CopyOnWriteArrayList.containsAll(Collection
Returns
true if this list contains all of the elements of the specified collection.
|
protected int |
ForkJoinPool.drainTasksTo(Collection
Removes all available unexecuted submitted and forked tasks from scheduling queues and adds them to the given collection, without altering their execution status.
|
int |
SynchronousQueue.drainTo(Collection
|
int |
LinkedBlockingQueue.drainTo(Collection
|
int |
BlockingQueue.drainTo(Collection
Removes all available elements from this queue and adds them to the given collection.
|
int |
LinkedTransferQueue.drainTo(Collection
|
int |
ArrayBlockingQueue.drainTo(Collection
|
int |
LinkedBlockingDeque.drainTo(Collection
|
int |
DelayQueue.drainTo(Collection
|
int |
PriorityBlockingQueue.drainTo(Collection
|
int |
SynchronousQueue.drainTo(Collection
|
int |
LinkedBlockingQueue.drainTo(Collection
|
int |
BlockingQueue.drainTo(Collection
Removes at most the given number of available elements from this queue and adds them to the given collection.
|
int |
LinkedTransferQueue.drainTo(Collection
|
int |
ArrayBlockingQueue.drainTo(Collection
|
int |
LinkedBlockingDeque.drainTo(Collection
|
int |
DelayQueue.drainTo(Collection
|
int |
PriorityBlockingQueue.drainTo(Collection
|
<T> List |
ExecutorService.invokeAll(Collection
Executes the given tasks, returning a list of Futures holding their status and results when all complete.
|
<T> List |
ForkJoinPool.invokeAll(Collection
|
<T> List |
AbstractExecutorService.invokeAll(Collection
|
<T> List |
ExecutorService.invokeAll(Collection
Executes the given tasks, returning a list of Futures holding their status and results when all complete or the timeout expires, whichever happens first.
|
<T> List |
AbstractExecutorService.invokeAll(Collection
|
static <T extends ForkJoinTask |
ForkJoinTask.invokeAll(Collection
Forks all tasks in the specified collection, returning when
isDone holds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown.
|
<T> T |
ExecutorService.invokeAny(Collection
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do.
|
<T> T |
AbstractExecutorService.invokeAny(Collection
|
<T> T |
ExecutorService.invokeAny(Collection
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses.
|
<T> T |
AbstractExecutorService.invokeAny(Collection
|
boolean |
SynchronousQueue.removeAll(Collection
Always returns
false.
|
boolean |
CopyOnWriteArraySet.removeAll(Collection
Removes from this set all of its elements that are contained in the specified collection.
|
boolean |
ConcurrentSkipListSet.removeAll(Collection
Removes from this set all of its elements that are contained in the specified collection.
|
boolean |
CopyOnWriteArrayList.removeAll(Collection
Removes from this list all of its elements that are contained in the specified collection.
|
boolean |
SynchronousQueue.retainAll(Collection
Always returns
false.
|
boolean |
CopyOnWriteArraySet.retainAll(Collection
Retains only the elements in this set that are contained in the specified collection.
|
boolean |
CopyOnWriteArrayList.retainAll(Collection
Retains only the elements in this list that are contained in the specified collection.
|
| Constructor and Description | |
|---|---|
ArrayBlockingQueue(int capacity, boolean fair, Collection
Creates an
ArrayBlockingQueue with the given (fixed) capacity, the specified access policy and initially containing the elements of the given collection, added in traversal order of the collection's iterator.
|
|
ConcurrentLinkedDeque(Collection
Constructs a deque initially containing the elements of the given collection, added in traversal order of the collection's iterator.
|
|
ConcurrentLinkedQueue(Collection
Creates a
ConcurrentLinkedQueue initially containing the elements of the given collection, added in traversal order of the collection's iterator.
|
|
ConcurrentSkipListSet(Collection
Constructs a new set containing the elements in the specified collection, that orders its elements according to their
natural ordering.
|
|
CopyOnWriteArrayList(Collection
Creates a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
|
|
CopyOnWriteArraySet(Collection
Creates a set containing all of the elements of the specified collection.
|
|
DelayQueue(Collection
Creates a
DelayQueue initially containing the elements of the given collection of
Delayed instances.
|
|
LinkedBlockingDeque(Collection
Creates a
LinkedBlockingDeque with a capacity of
Integer, initially containing the elements of the given collection, added in traversal order of the collection's iterator.
|
|
LinkedBlockingQueue(Collection
Creates a
LinkedBlockingQueue with a capacity of
Integer, initially containing the elements of the given collection, added in traversal order of the collection's iterator.
|
|
LinkedTransferQueue(Collection
Creates a
LinkedTransferQueue initially containing the elements of the given collection, added in traversal order of the collection's iterator.
|
|
PriorityBlockingQueue(Collection
Creates a
PriorityBlockingQueue containing the elements in the specified collection.
|
| Modifier and Type | Method and Description |
|---|---|
Collection |
AbstractQueuedSynchronizer.getExclusiveQueuedThreads()
Returns a collection containing threads that may be waiting to acquire in exclusive mode.
|
Collection |
AbstractQueuedLongSynchronizer.getExclusiveQueuedThreads()
Returns a collection containing threads that may be waiting to acquire in exclusive mode.
|
protected Collection |
ReentrantReadWriteLock.getQueuedReaderThreads()
Returns a collection containing threads that may be waiting to acquire the read lock.
|
protected Collection |
ReentrantLock.getQueuedThreads()
Returns a collection containing threads that may be waiting to acquire this lock.
|
Collection |
AbstractQueuedSynchronizer.getQueuedThreads()
Returns a collection containing threads that may be waiting to acquire.
|
protected Collection |
ReentrantReadWriteLock.getQueuedThreads()
Returns a collection containing threads that may be waiting to acquire either the read or write lock.
|
Collection |
AbstractQueuedLongSynchronizer.getQueuedThreads()
Returns a collection containing threads that may be waiting to acquire.
|
protected Collection |
ReentrantReadWriteLock.getQueuedWriterThreads()
Returns a collection containing threads that may be waiting to acquire the write lock.
|
Collection |
AbstractQueuedSynchronizer.getSharedQueuedThreads()
Returns a collection containing threads that may be waiting to acquire in shared mode.
|
Collection |
AbstractQueuedLongSynchronizer.getSharedQueuedThreads()
Returns a collection containing threads that may be waiting to acquire in shared mode.
|
protected Collection |
AbstractQueuedSynchronizer.ConditionObject.getWaitingThreads()
Returns a collection containing those threads that may be waiting on this Condition.
|
protected Collection |
AbstractQueuedLongSynchronizer.ConditionObject.getWaitingThreads()
Returns a collection containing those threads that may be waiting on this Condition.
|
Collection |
AbstractQueuedLongSynchronizer.getWaitingThreads(AbstractQueuedLongSynchronizer
Returns a collection containing those threads that may be waiting on the given condition associated with this synchronizer.
|
Collection |
AbstractQueuedSynchronizer.getWaitingThreads(AbstractQueuedSynchronizer
Returns a collection containing those threads that may be waiting on the given condition associated with this synchronizer.
|
protected Collection |
ReentrantLock.getWaitingThreads(Condition
Returns a collection containing those threads that may be waiting on the given condition associated with this lock.
|
protected Collection |
ReentrantReadWriteLock.getWaitingThreads(Condition
Returns a collection containing those threads that may be waiting on the given condition associated with the write lock.
|
| Modifier and Type | Method and Description |
|---|---|
Collection |
Attributes.values()
Returns a Collection view of the attribute values contained in this Map.
|
| Modifier and Type | Method and Description |
|---|---|
static <T |
Collectors.toCollection(Supplier
Returns a
Collector that accumulates the input elements into a new
Collection, in encounter order.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AttributeList
Represents a list of values for attributes of an MBean.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
AttributeList.addAll(Collection
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's Iterator.
|
boolean |
AttributeList.addAll(int index, Collection
Inserts all of the elements in the specified collection into this list, starting at the specified position.
|
| Modifier and Type | Method and Description |
|---|---|
Collection |
TabularData.values()
Returns a collection view of the
CompositeData values (ie the rows) contained in this
TabularData instance.
|
Collection |
TabularDataSupport.values()
Returns a collection view of the rows contained in this
TabularDataSupport instance.
|
Collection |
CompositeDataSupport.values()
Returns an unmodifiable Collection view of the item values contained in this
CompositeData instance.
|
Collection |
CompositeData.values()
Returns an unmodifiable Collection view of the item values contained in this
CompositeData instance.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RoleList
A RoleList represents a list of roles (Role objects).
|
class |
RoleUnresolvedList
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.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
RoleUnresolvedList.addAll(Collection
|
boolean |
RoleList.addAll(Collection
|
boolean |
RoleUnresolvedList.addAll(int index, Collection
|
boolean |
RoleList.addAll(int index, Collection
|
| Modifier and Type | Method and Description |
|---|---|
Collection |
SSLParameters.getSNIMatchers()
Returns a
Collection containing all
SNIMatchers of the Server Name Indication (SNI) parameter, or null if none has been set.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SSLParameters.setSNIMatchers(Collection
Sets the
SNIMatchers of the Server Name Indication (SNI) parameter.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JobStateReasons
Class JobStateReasons is a printing attribute class, a set of enumeration values, that provides additional information about the job's current state, i.e., information that augments the value of the job's
JobState attribute.
|
| Constructor and Description | |
|---|---|
JobStateReasons(Collection
Construct a new job state reasons attribute that contains the same
JobStateReason objects as the given collection.
|
| Modifier and Type | Method and Description |
|---|---|
Collection |
SimpleBindings.values()
Returns a
Collection view of the values contained in this map.
|
| Modifier and Type | Method and Description |
|---|---|
Collection |
JoinRowSet.getRowSets()
Returns a
Collection object containing the
RowSet objects that have been added to this
JoinRowSet object.
|
Collection |
CachedRowSet.toCollection()
Converts this
CachedRowSet object to a
Collection object that contains all of this
CachedRowSet object's data.
|
Collection |
CachedRowSet.toCollection(int column)
Converts the designated column in this
CachedRowSet object to a
Collection object.
|
Collection |
CachedRowSet.toCollection(String
Converts the designated column in this
CachedRowSet object to a
Collection object.
|