OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EnumHashBiMap
(Results
1 - 2
of
2
) sorted by null
/external/guava/src/com/google/common/collect/
EnumHashBiMap.java
31
* but null values are. An {@code
EnumHashBiMap
} and its inverse are both
37
public final class
EnumHashBiMap
<K extends Enum<K>, V>
42
* Returns a new, empty {@code
EnumHashBiMap
} using the specified key type.
46
public static <K extends Enum<K>, V>
EnumHashBiMap
<K, V>
48
return new
EnumHashBiMap
<K, V>(keyType);
53
* specified map is an {@code
EnumHashBiMap
} or an {@link EnumBiMap}, the new
59
* {@code
EnumHashBiMap
} instance and contains no mappings
61
public static <K extends Enum<K>, V>
EnumHashBiMap
<K, V>
63
EnumHashBiMap
<K, V> bimap = create(EnumBiMap.inferKeyType(map));
68
private
EnumHashBiMap
(Class<K> keyType)
[
all
...]
EnumBiMap.java
79
if (map instanceof
EnumHashBiMap
) {
80
return ((
EnumHashBiMap
<K, ?>) map).keyType();
Completed in 23 milliseconds