Type Parameters:
K
- the type of the keys in this map
V
- the type of the values in this map
All Known Subinterfaces:
BidiMap
<K,V>,
BoundedMap
<K,V>,
IterableGet
<K,V>,
IterableMap
<K,V>,
IterableSortedMap
<K,V>,
MultiMap
<K,V>,
OrderedBidiMap
<K,V>,
OrderedMap
<K,V>,
SortedBidiMap
<K,V>,
Trie
<K,V>
All Known Implementing Classes:
AbstractBidiMapDecorator
,
AbstractBitwiseTrie
,
AbstractDualBidiMap
,
AbstractHashedMap
,
AbstractIterableGetMapDecorator
,
AbstractIterableMap
,
AbstractLinkedMap
,
AbstractMapDecorator
,
AbstractOrderedBidiMapDecorator
,
AbstractOrderedMapDecorator
,
AbstractReferenceMap
,
AbstractSortedBidiMapDecorator
,
AbstractSortedMapDecorator
,
CaseInsensitiveMap
,
CompositeMap
,
DefaultedMap
,
DualHashBidiMap
,
DualLinkedHashBidiMap
,
DualTreeBidiMap
,
DualTreeBidiMap.ViewMap
,
FixedSizeMap
,
FixedSizeSortedMap
,
Flat3Map
,
HashedMap
,
LazyMap
,
LazySortedMap
,
LinkedMap
,
ListOrderedMap
,
LRUMap
,
MultiKeyMap
,
MultiValueMap
,
PassiveExpiringMap
,
PatriciaTrie
,
PredicatedMap
,
PredicatedSortedMap
,
ReferenceIdentityMap
,
ReferenceMap
,
SingletonMap
,
StaticBucketMap
,
TransformedMap
,
TransformedSortedMap
,
TransformedSplitMap
,
TreeBidiMap
,
UnmodifiableBidiMap
,
UnmodifiableMap
,
UnmodifiableOrderedBidiMap
,
UnmodifiableOrderedMap
,
UnmodifiableSortedBidiMap
,
UnmodifiableSortedMap
,
UnmodifiableTrie
public interface Get<K,V>
The "read" subset of the
Map
interface.
Since:
See Also:
key
- key whose presence in this map is to be tested
Returns:
true
if this map contains a mapping for the specified
See Also:
Map.containsKey(Object)
value
- value whose presence in this map is to be tested
Returns:
true
if this map maps one or more keys to the
specified value
See Also:
Map.containsValue(Object)
key
- the key whose associated value is to be returned
Returns:
the value to which the specified key is mapped, or
null
if this map contains no mapping for the key
See Also:
Map.get(Object)
key
- key whose mapping is to be removed from the map
Returns:
the previous value associated with
key
, or
null
if there was no mapping for
key
.
See Also:
Map.remove(Object)