Searched defs:EnumBiMap (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DEnumBiMap.java32 * are not permitted. An {@code EnumBiMap} and its inverse are both
39 public final class EnumBiMap<K extends Enum<K>, V extends Enum<V>> class in inherits:AbstractBiMap
45 * Returns a new, empty {@code EnumBiMap} using the specified key and value
51 public static <K extends Enum<K>, V extends Enum<V>> EnumBiMap<K, V>
53 return new EnumBiMap<K, V>(keyType, valueType);
58 * specified map is an {@code EnumBiMap}, the new bimap has the same types as
63 * @throws IllegalArgumentException if map is not an {@code EnumBiMap}
66 public static <K extends Enum<K>, V extends Enum<V>> EnumBiMap<K, V>
68 EnumBiMap<K, V> bimap = create(inferKeyType(map), inferValueType(map));
73 private EnumBiMap(Clas method in class:EnumBiMap
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEnumBiMap.java28 * are not permitted. An {@code EnumBiMap} and its inverse are both
35 public final class EnumBiMap<K extends Enum<K>, V extends Enum<V>> class in inherits:AbstractBiMap
41 * Returns a new, empty {@code EnumBiMap} using the specified key and value
47 public static <K extends Enum<K>, V extends Enum<V>> EnumBiMap<K, V>
49 return new EnumBiMap<K, V>(keyType, valueType);
54 * specified map is an {@code EnumBiMap}, the new bimap has the same types as
59 * @throws IllegalArgumentException if map is not an {@code EnumBiMap}
62 public static <K extends Enum<K>, V extends Enum<V>> EnumBiMap<K, V>
64 EnumBiMap<K, V> bimap = create(inferKeyType(map), inferValueType(map));
69 private EnumBiMap(Clas method in class:EnumBiMap
[all...]

Completed in 467 milliseconds