| AbstractHashedMap |
An abstract implementation of a hash-based map which provides numerous points for
subclasses to override.
|
| AbstractHashedMap.EntrySet |
EntrySet implementation.
|
| AbstractHashedMap.EntrySetIterator |
EntrySet iterator.
|
| AbstractHashedMap.HashEntry |
HashEntry used to store the data.
|
| AbstractHashedMap.HashIterator |
Base Iterator
|
| AbstractHashedMap.KeySet |
KeySet implementation.
|
| AbstractHashedMap.Values |
Values implementation.
|
| AbstractInputCheckedMapDecorator |
An abstract base class that simplifies the task of creating map decorators.
|
| AbstractLinkedMap |
An abstract implementation of a hash-based map that links entries to create an
ordered map and which provides numerous points for subclasses to override.
|
| AbstractLinkedMap.EntrySetIterator |
EntrySet iterator.
|
| AbstractLinkedMap.LinkEntry |
LinkEntry that stores the data.
|
| AbstractLinkedMap.LinkIterator |
Base Iterator that iterates in link order.
|
| AbstractMapDecorator |
Provides a base decorator that enables additional functionality to be added
to a Map via decoration.
|
| AbstractOrderedMapDecorator |
Provides a base decorator that enables additional functionality to be added
to an OrderedMap via decoration.
|
| AbstractReferenceMap |
An abstract implementation of a hash-based map that allows the entries to
be removed by the garbage collector.
|
| AbstractReferenceMap.ReferenceEntry |
A MapEntry implementation for the map.
|
| AbstractReferenceMap.ReferenceEntrySetIterator |
The EntrySet iterator.
|
| AbstractSortedMapDecorator |
Provides a base decorator that enables additional functionality to be added
to a Map via decoration.
|
| CompositeMap |
Decorates a map of other maps to provide a single unified view.
|
| CompositeMap.MapMutator |
This interface allows definition for all of the indeterminate
mutators in a CompositeMap, as well as providing a hook for
callbacks on key collisions.
|
| Flat3Map |
A Map implementation that stores data in simple fields until
the size is greater than 3.
|
| Flat3Map.EntrySetIterator |
EntrySetIterator and MapEntry
|
| LazyMap |
Decorates another Map to create objects in the map on demand.
|
| LinkedMap |
A Map implementation that maintains the order of the entries.
|
| ListOrderedMap |
Decorates a Map to ensure that the order of addition is retained
using a List to maintain order.
|
| MultiKeyMap |
A Map implementation that uses multiple keys to map the value.
|
| MultiValueMap |
A MultiValueMap decorates another map, allowing it to have
more than one value for a key.
|
| PredicatedMap |
Decorates another Map to validate that additions
match a specified predicate.
|
| SingletonMap |
A Map implementation that holds a single item and is fixed size.
|
| StaticBucketMap.EntryIterator |
|
| StaticBucketMap.Lock |
The lock object, which also includes a count of the nodes in this lock.
|
| StaticBucketMap.Node |
The Map.Entry for the StaticBucketMap.
|
| TransformedMap |
Decorates another Map to transform objects that are added.
|