Package java.util
package java.util
-
ClassDescriptionClass
AbstractCollectionis an abstract implementation of theCollectioninterface.AbstractList<E>AbstractListis an abstract implementation of theListinterface, optimized for a backing store which supports random access.AbstractMap<K,V> This class is an abstract implementation of theMapinterface.A key-value mapping.An immutable key-value mapping.AbstractQueue is an abstract class which implements some of the methods inQueue.AbstractSequentialList is an abstract implementation of the List interface.AbstractSet<E>An AbstractSet is an abstract implementation of the Set interface.ArrayDeque<E>An implementation of Deque, backed by an array.ArrayList<E>ArrayList is an implementation ofList, backed by an array.Arrayscontains static methods which operate on arrays.TheBitSetclass implements a bit field.Calendar is an abstract base class for converting between a Date object and a set of integer fields such as YEAR, MONTH, DAY, HOUR, and so on.Collection<E>Collectionis the root of the collection hierarchy.Collectionscontains static methods which operate onCollectionclasses.Comparator<T>AComparatoris used to compare two objects to determine their ordering with respect to each other.AnConcurrentModificationExceptionis thrown when a Collection is modified and an existing iterator on the Collection is used to modify the Collection as well.The class Date represents a specific instant in time, with millisecond precision.Deque<E>A kind of collection that can insert or remove element at both ends("double ended queue").Dictionary<K,V> Note: Do not use this class since it is obsolete.Thrown by methods in the Stack class to indicate that the stack is empty.Enumeration<T>An object that implements the Enumeration interface generates a series of elements, one at a time.EventListener is the superclass of all event listener interfaces.This abstract class provides a simple wrapper for objects of typeEventListener.HashMap<K,V> HashMap is an implementation of Map.HashSet<E>HashSet is an implementation of a Set.Hashtable<K,V> Hashtable associates keys with values.IdentityHashMap<K,V> IdentityHashMap is a variant on HashMap which tests equality by reference instead of equality by value.Iterator<E>AnIteratoris used to sequence over a collection of objects.LinkedHashMap<K,V> LinkedHashMap is a variant of HashMap.LinkedHashSet is a variant of HashSet.LinkedList<E>LinkedList is an implementation of List, backed by a linked list.List<E>AListis a collection which maintains an ordering for its elements.ListIterator<E>An ListIterator is used to sequence over a List of objects.Map<K,V> AMapis a data structure consisting of a set of keys and values in which each key is mapped to a single value.Map.Entry<K,V> Map.Entryis a key/value mapping contained in aMap.NavigableMap<K,V> NavigableMap is a SortedMap with navigation methods answering the closest matches for specified item.NavigableSet<E>NavigableSet is a SortedSet with navigation methods answering the closest matches for specified item.Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in the enumeration.This is a compatibility class which supports the java.util.Objects API.Observable is used to notify a group of Observer objects when a change occurs.Observeris the interface to be implemented by objects that receive notification of updates on anObservableobject.A PriorityQueue holds elements on a priority heap, which orders the elements according to their natural order or according to the comparator specified at construction time.Queue<E>This kind of collection provides advanced operations compared to basic collections, such as insertion, extraction, and inspection.An instance of this class is used to generate a stream of pseudorandom numbers.RandomAccess is implemented byListimplementations that support fast (usually constant time) random access.Set<E>ASetis a data structure which does not allow duplicate elements.SortedMap<K,V> A map that has its keys ordered.SortedSet<E>SortedSet is a Set which iterates over its elements in a sorted order.Stack<E>Stackis a Last-In/First-Out(LIFO) data structure which represents a stack of objects.TheStringTokenizerclass allows an application to break a string into tokens by performing code point comparison.TimeZone represents a time zone offset, and also figures out daylight savings.TreeMap<K,V> TreeMap is an implementation of SortedMap.TreeSet<E>TreeSet is an implementation of SortedSet.Vector<E>Vector is a variable size contiguous indexable array of objects.