Returns a new, empty EnumHashBiMap using the specified key type. @param keyType the key type
(Class<K> keyType)
| 55 | |
| 56 | |
| 57 | public static <K extends Enum<K>, V> EnumHashBiMap<K, V> create(Class<K> keyType) { |
| 58 | return new EnumHashBiMap<K, V>(keyType); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Constructs a new bimap with the same mappings as the specified map. If the |
nothing calls this directly
no test coverage detected