UnmodifiableArrayBackedMap |
UnmodifiableArrayBackedMap.copyAndPut(java.lang.String key,
java.lang.String value) |
Creates a new instance that contains the same entries as this map, plus
either the new entry or updated value passed in the parameters.
|
UnmodifiableArrayBackedMap |
UnmodifiableArrayBackedMap.copyAndPutAll(java.util.Map<java.lang.String,java.lang.String> entriesToAdd) |
Creates a new instance that contains the same entries as this map, plus the
new entries or updated values passed in the parameters.
|
UnmodifiableArrayBackedMap |
UnmodifiableArrayBackedMap.copyAndRemove(java.lang.String key) |
Creates a new instance that contains the same entries as this map, minus the
entry with the specified key (if such an entry exists).
|
UnmodifiableArrayBackedMap |
UnmodifiableArrayBackedMap.copyAndRemoveAll(java.lang.Iterable<java.lang.String> keysToRemoveIterable) |
Creates a new instance where the entries of provided keys are removed.
|
static UnmodifiableArrayBackedMap |
UnmodifiableArrayBackedMap.getMap(java.lang.Object[] backingArray) |
|