- All Known Implementing Classes:
HashMap
,IntKeyHashMap
,IntKeyHashMapConcurrent
,IntKeyIntValueHashMap
,IntKeyLongValueHashMap
,LongKeyHashMap
,LongKeyIntValueHashMap
,LongKeyLongValueHashMap
,MultiValueHashMap
,OrderedHashMap
,OrderedIntKeyHashMap
,OrderedLongKeyHashMap
public interface Map<K,V>
Interface for collections of mapped key - value pairs.
- Since:
- 2.6.0
- Author:
- Fred Toussi (fredt@users dot sourceforge.net)
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
boolean
containsKey
(Object key) boolean
containsValue
(Object value) entrySet()
boolean
isEmpty()
keySet()
void
int
size()
values()
-
Method Details
-
size
int size() -
isEmpty
boolean isEmpty() -
containsKey
-
containsValue
-
get
-
put
-
remove
-
putAll
-
clear
void clear() -
keySet
-
values
Collection<V> values() -
entrySet
-