Uses of Class
com.google.common.collect.EnumBiMap
-
Packages that use EnumBiMap Package Description com.google.common.collect Collection interfaces and implementations, and other utilities for collections. -
-
Uses of EnumBiMap in com.google.common.collect
Methods in com.google.common.collect that return EnumBiMap Modifier and Type Method Description static <K extends java.lang.Enum<K>,V extends java.lang.Enum<V>>
EnumBiMap<K,V>EnumBiMap. create(java.lang.Class<K> keyType, java.lang.Class<V> valueType)
Returns a new, emptyEnumBiMap
using the specified key and value types.static <K extends java.lang.Enum<K>,V extends java.lang.Enum<V>>
EnumBiMap<K,V>EnumBiMap. create(java.util.Map<K,V> map)
Returns a new bimap with the same mappings as the specified map.
-