(package private) class |
AbstractInputCheckedMapDecorator |
An abstract base class that simplifies the task of creating map decorators.
|
class |
AbstractOrderedMapDecorator |
Provides a base decorator that enables additional functionality to be added
to an OrderedMap via decoration.
|
class |
AbstractSortedMapDecorator |
Provides a base decorator that enables additional functionality to be added
to a Map via decoration.
|
class |
DefaultedMap |
Decorates another Map returning a default value if the map
does not contain the requested key.
|
class |
FixedSizeMap |
Decorates another Map to fix the size, preventing add/remove.
|
class |
FixedSizeSortedMap |
Decorates another SortedMap to fix the size blocking add/remove.
|
class |
LazyMap |
Decorates another Map to create objects in the map on demand.
|
class |
LazySortedMap |
Decorates another SortedMap to create objects in the map on demand.
|
class |
ListOrderedMap |
Decorates a Map to ensure that the order of addition is retained
using a List to maintain order.
|
class |
MultiValueMap |
A MultiValueMap decorates another map, allowing it to have
more than one value for a key.
|
class |
PredicatedMap |
Decorates another Map to validate that additions
match a specified predicate.
|
class |
PredicatedSortedMap |
Decorates another SortedMap to validate that additions
match a specified predicate.
|
class |
TransformedMap |
Decorates another Map to transform objects that are added.
|
class |
TransformedSortedMap |
Decorates another SortedMap to transform objects that are added.
|
class |
UnmodifiableMap |
Decorates another Map to ensure it can't be altered.
|
class |
UnmodifiableOrderedMap |
Decorates another OrderedMap to ensure it can't be altered.
|
class |
UnmodifiableSortedMap |
Decorates another SortedMap to ensure it can't be altered.
|