MCPcopy Create free account
hub / github.com/antlr/codebuff / create

Method create

output/java_guava/1.4.17/EnumBiMap.java:57–59  ·  view source on GitHub ↗

Returns a new, empty EnumBiMap using the specified key and value types. @param keyType the key type @param valueType the value type

(Class<K> keyType, Class<V> valueType)

Source from the content-addressed store, hash-verified

55
56
57 public static <K extends Enum<K>, V extends Enum<V>> EnumBiMap<K, V> create(Class<K> keyType, Class<V> valueType) {
58 return new EnumBiMap<K, V>(keyType, valueType);
59 }
60
61 /**
62 * Returns a new bimap with the same mappings as the specified map. If the

Callers

nothing calls this directly

Calls 3

inferKeyTypeMethod · 0.95
inferValueTypeMethod · 0.95
putAllMethod · 0.65

Tested by

no test coverage detected