(IntegerKey key)
| 172 | } |
| 173 | |
| 174 | public final int getSafe(IntegerKey key) |
| 175 | { |
| 176 | Integer intValue = integerChar == null ? null : integerChar.get(key); |
| 177 | return intValue == null ? key.getDefault() : intValue; |
| 178 | } |
| 179 | |
| 180 | public final Integer put(IntegerKey key, Integer intValue) |
| 181 | { |