(Class<K> keyType)
| 77 | } |
| 78 | |
| 79 | private EnumHashBiMap(Class<K> keyType) { |
| 80 | super( |
| 81 | WellBehavedMap.wrap(new EnumMap<K, V>(keyType)), |
| 82 | Maps.<V, K>newHashMapWithExpectedSize(keyType.getEnumConstants().length)); |
| 83 | this.keyType = keyType; |
| 84 | } |
| 85 | |
| 86 | // Overriding these 3 methods to show that values may be null (but not keys) |
| 87 |
nothing calls this directly
no test coverage detected