Uses of Class
java.util.AbstractCollection
| Package | Description | 
|---|---|
| java.util | 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. | 
| java.util.concurrent | Utility classes commonly useful in concurrent programming. | 
| javax.management | Provides the core classes for the Java Management Extensions. | 
| javax.management.relation | Provides the definition of the Relation Service. | 
| javax.print.attribute.standard | Package  javax.print.attribute.standardcontains classes for specific
 printing attributes. | 
- 
Uses of AbstractCollection in java.utilSubclasses of AbstractCollection in java.util Modifier and Type Class Description classAbstractList<E>This class provides a skeletal implementation of theListinterface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).classAbstractQueue<E>This class provides skeletal implementations of someQueueoperations.classAbstractSequentialList<E>This class provides a skeletal implementation of theListinterface to minimize the effort required to implement this interface backed by a "sequential access" data store (such as a linked list).classAbstractSet<E>This class provides a skeletal implementation of theSetinterface to minimize the effort required to implement this interface.classArrayDeque<E>Resizable-array implementation of theDequeinterface.classArrayList<E>Resizable-array implementation of theListinterface.classEnumSet<E extends Enum<E>>A specializedSetimplementation for use with enum types.classHashSet<E>This class implements theSetinterface, backed by a hash table (actually aHashMapinstance).classLinkedHashSet<E>Hash table and linked list implementation of theSetinterface, with predictable iteration order.classLinkedList<E>Doubly-linked list implementation of theListandDequeinterfaces.classPriorityQueue<E>An unbounded priority queue based on a priority heap.classStack<E>TheStackclass represents a last-in-first-out (LIFO) stack of objects.classTreeSet<E>ANavigableSetimplementation based on aTreeMap.classVector<E>TheVectorclass implements a growable array of objects.
- 
Uses of AbstractCollection in java.util.concurrentSubclasses of AbstractCollection in java.util.concurrent Modifier and Type Class Description classArrayBlockingQueue<E>A bounded blocking queue backed by an array.classConcurrentLinkedDeque<E>An unbounded concurrent deque based on linked nodes.classConcurrentLinkedQueue<E>An unbounded thread-safe queue based on linked nodes.classConcurrentSkipListSet<E>A scalable concurrentNavigableSetimplementation based on aConcurrentSkipListMap.classCopyOnWriteArraySet<E>ASetthat uses an internalCopyOnWriteArrayListfor all of its operations.classDelayQueue<E extends Delayed>An unbounded blocking queue ofDelayedelements, in which an element can only be taken when its delay has expired.classLinkedBlockingDeque<E>An optionally-bounded blocking deque based on linked nodes.classLinkedBlockingQueue<E>An optionally-bounded blocking queue based on linked nodes.classLinkedTransferQueue<E>An unboundedTransferQueuebased on linked nodes.classPriorityBlockingQueue<E>An unbounded blocking queue that uses the same ordering rules as classPriorityQueueand supplies blocking retrieval operations.classSynchronousQueue<E>A blocking queue in which each insert operation must wait for a corresponding remove operation by another thread, and vice versa.
- 
Uses of AbstractCollection in javax.managementSubclasses of AbstractCollection in javax.management Modifier and Type Class Description classAttributeListRepresents a list of values for attributes of an MBean.
- 
Uses of AbstractCollection in javax.management.relationSubclasses of AbstractCollection in javax.management.relation Modifier and Type Class Description classRoleListA RoleList represents a list of roles (Role objects).classRoleUnresolvedListA 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.
- 
Uses of AbstractCollection in javax.print.attribute.standardSubclasses of AbstractCollection in javax.print.attribute.standard Modifier and Type Class Description classJobStateReasonsClassJobStateReasonsis 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'sJobStateattribute.