T - the entry type of the mappublic interface ExternalMap<T>
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(CharSequence key) |
T |
get(CharSequence key)
Element access
|
Iterable<Map.Entry<CharSequence,T>> |
getAll(Set<? extends CharSequence> keys) |
T |
put(CharSequence key,
T value)
Put a record into the map
|
void |
putAll(Map<? extends CharSequence,? extends T> m)
Copies all of the mappings from the specified map to this map (optional
operation).
|
T |
remove(CharSequence key)
Removes the mapping for a key from this map if it is present (optional
operation).
|
boolean containsKey(CharSequence key)
key - T get(CharSequence key)
key - T put(CharSequence key, T value)
key - value - T remove(CharSequence key)
key - key whose mapping is to be removed from the mapvoid putAll(Map<? extends CharSequence,? extends T> m)
m - Iterable<Map.Entry<CharSequence,T>> getAll(Set<? extends CharSequence> keys)
Copyright © 2015 The Apache Software Foundation. All rights reserved.