Uses of Class
com.google.common.collect.AbstractBiMap
-
Packages that use AbstractBiMap Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. -
-
Uses of AbstractBiMap in com.google.common.collect
Subclasses of AbstractBiMap in com.google.common.collect Modifier and Type Class Description (package private) static class
AbstractBiMap.Inverse<K,V>
The inverse of any otherAbstractBiMap
subclass.class
EnumBiMap<K extends java.lang.Enum<K>,V extends java.lang.Enum<V>>
ABiMap
backed by twoEnumMap
instances.class
EnumHashBiMap<K extends java.lang.Enum<K>,V>
ABiMap
backed by anEnumMap
instance for keys-to-values, and aHashMap
instance for values-to-keys.Fields in com.google.common.collect declared as AbstractBiMap Modifier and Type Field Description (package private) AbstractBiMap<V,K>
AbstractBiMap. inverse
Methods in com.google.common.collect that return AbstractBiMap Modifier and Type Method Description (package private) AbstractBiMap<V,K>
AbstractBiMap. makeInverse(java.util.Map<V,K> backward)
Methods in com.google.common.collect with parameters of type AbstractBiMap Modifier and Type Method Description (package private) void
AbstractBiMap. setInverse(AbstractBiMap<V,K> inverse)
Constructors in com.google.common.collect with parameters of type AbstractBiMap Constructor Description AbstractBiMap(java.util.Map<K,V> backward, AbstractBiMap<V,K> forward)
Private constructor for inverse bimap.Inverse(java.util.Map<K,V> backward, AbstractBiMap<V,K> forward)
-