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)
| 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 |
nothing calls this directly
no test coverage detected