Interface Map<K,V>
- 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
-
Method Details
-
size
int size() -
isEmpty
boolean isEmpty() -
containsKey
-
containsValue
-
get
-
put
-
remove
-
clear
void clear() -
keySet
-
values
Collection<V> values() -
entrySet
-