Uses of Class
com.google.common.collect.ForwardingMap
-
Packages that use ForwardingMap Package Description com.google.common.collect Collection interfaces and implementations, and other utilities for collections.com.google.common.reflect Utilities for reflection. -
-
Uses of ForwardingMap in com.google.common.collect
Subclasses of ForwardingMap in com.google.common.collect Modifier and Type Class Description class
EnumBiMap<K extends Enum<K>,V extends Enum<V>>
ABiMap
backed by twoEnumMap
instances.class
EnumHashBiMap<K extends Enum<K>,V extends @Nullable Object>
ABiMap
backed by anEnumMap
instance for keys-to-values, and aHashMap
instance for values-to-keys.class
ForwardingConcurrentMap<K,V>
A concurrent map which forwards all its method calls to another concurrent map.class
ForwardingNavigableMap<K extends @Nullable Object,V extends @Nullable Object>
A navigable map which forwards all its method calls to another navigable map.protected class
ForwardingNavigableMap.StandardDescendingMap
A sensible implementation ofNavigableMap.descendingMap()
in terms of the methods of thisNavigableMap
.class
ForwardingSortedMap<K extends @Nullable Object,V extends @Nullable Object>
A sorted map which forwards all its method calls to another sorted map.class
ImmutableClassToInstanceMap<B>
AClassToInstanceMap
whose contents will never change, with many other important properties detailed atImmutableCollection
.class
MutableClassToInstanceMap<B extends @Nullable Object>
A mutable class-to-instance map backed by an arbitrary user-provided map. -
Uses of ForwardingMap in com.google.common.reflect
Subclasses of ForwardingMap in com.google.common.reflect Modifier and Type Class Description class
ImmutableTypeToInstanceMap<B>
A type-to-instance map backed by anImmutableMap
.class
MutableTypeToInstanceMap<B extends @Nullable Object>
A mutable type-to-instance map.
-