Uses of Class
java.util.AbstractMap
| Package | Description |
|---|---|
| java.util | |
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
-
Uses of AbstractMap in java.util
Subclasses of AbstractMap in java.util Modifier and Type Class Description classEnumMap<K extends Enum<K>,V>AnMapspecialized for use withEnumtypes as keys.classHashMap<K,V>HashMap is an implementation ofMap.classIdentityHashMap<K,V>IdentityHashMap is a variant on HashMap which tests equality by reference instead of equality by value.classLinkedHashMap<K,V>LinkedHashMap is an implementation ofMapthat guarantees iteration order.classTreeMap<K,V>A map whose entries are sorted by their keys.classWeakHashMap<K,V>WeakHashMap is an implementation of Map with keys which are WeakReferences. -
Uses of AbstractMap in java.util.concurrent
Subclasses of AbstractMap in java.util.concurrent Modifier and Type Class Description classConcurrentHashMap<K,V>A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updates.classConcurrentSkipListMap<K,V>A scalable concurrentConcurrentNavigableMapimplementation.