public class FastHashMap extends Object implements Map, Serializable
null
key is allowed; null
values are allowed.Constructor and Description |
---|
FastHashMap()
Constructor for Message.
|
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set |
entrySet() |
Object |
get(Object key) |
Object[] |
getKeys() |
boolean |
isEmpty() |
Set |
keySet() |
Object |
put(Object key,
Object value) |
void |
putAll(Map map) |
Object |
remove(Object key) |
int |
size() |
String |
toString() |
Collection |
values() |
public boolean containsKey(Object key)
containsKey
in interface Map
key
- public Object[] getKeys()
public int size()
size
in interface Map
Map.size()
public boolean isEmpty()
isEmpty
in interface Map
Map.isEmpty()
public boolean containsValue(Object value)
containsValue
in interface Map
value
- Map.containsValue(java.lang.Object)
public Object remove(Object key)
remove
in interface Map
key
- Map.remove(java.lang.Object)
public void putAll(Map map)
putAll
in interface Map
map
- Map.putAll(java.util.Map)
public void clear()
clear
in interface Map
Map.clear()
public Set keySet()
keySet
in interface Map
Map.keySet()
public Collection values()
values
in interface Map
Map.values()
public Set entrySet()
entrySet
in interface Map
Map.entrySet()
public String toString()
toString
in class Object
Object.toString()
Copyright © 2012. All Rights Reserved.