DthingApi
|
Classes | |
class | Entry |
class | HashMapEntrySet |
Public Member Functions | |
HashMap () | |
HashMap (int capacity) | |
HashMap (int capacity, float loadFactor) | |
HashMap (Map<? extends K, ? extends V > map) | |
void | clear () |
Object | clone () |
boolean | containsKey (Object key) |
boolean | containsValue (Object value) |
Set< Map.Entry< K, V > > | entrySet () |
V | get (Object key) |
boolean | isEmpty () |
Set< K > | keySet () |
V | put (K key, V value) |
void | putAll (Map<? extends K, ? extends V > map) |
V | remove (Object key) |
int | size () |
Collection< V > | values () |
![]() | |
void | clear () |
boolean | containsKey (Object key) |
boolean | containsValue (Object value) |
abstract Set< Map.Entry< K, V > > | entrySet () |
boolean | equals (Object object) |
V | get (Object key) |
int | hashCode () |
boolean | isEmpty () |
Set< K > | keySet () |
V | put (K key, V value) |
void | putAll (Map<? extends K, ? extends V > map) |
V | remove (Object key) |
int | size () |
String | toString () |
Collection< V > | values () |
![]() | |
void | putAll (Map<? extends K,? extends V > map) |
Additional Inherited Members | |
![]() | |
Object | clone () throws CloneNotSupportedException |
HashMap is an implementation of Map. All optional operations (adding and removing) are supported. Keys and values can be any objects.
|
inline |
|
inline |
Constructs a new
instance with the specified capacity.
capacity | the initial capacity of this hash map. |
IllegalArgumentException | when the capacity is less than zero. |
|
inline |
Constructs a new
instance with the specified capacity and load factor.
capacity | the initial capacity of this hash map. |
loadFactor | the initial load factor. |
IllegalArgumentException | when the capacity is less than zero or the load factor is less or equal to zero. |
|
inline |
Constructs a new
instance containing the mappings from the specified map.
map | the mappings to add. |
|
inline |
Removes all mappings from this hash map, leaving it empty.
Implements java.util.Map< K, V >.
|
inline |
Returns a shallow copy of this map.
|
inline |
Returns whether this map contains the specified key.
key | the key to search for. |
Implements java.util.Map< K, V >.
|
inline |
Returns whether this map contains the specified value.
value | the value to search for. |
Implements java.util.Map< K, V >.
|
inline |
Returns a set containing all of the mappings in this map. Each mapping is an instance of Map.Entry. As the set is backed by this map, changes in one will be reflected in the other.
Implements java.util.Map< K, V >.
|
inline |
Returns the value of the mapping with the specified key.
key | the key. |
Implements java.util.Map< K, V >.
|
inline |
Returns whether this map is empty.
Implements java.util.Map< K, V >.
|
inline |
Returns a set of the keys contained in this map. The set is backed by this map so changes to one are reflected by the other. The set does not support adding.
Implements java.util.Map< K, V >.
|
inline |
Maps the specified key to the specified value.
key | the key. |
value | the value. |
Implements java.util.Map< K, V >.
|
inline |
Copies all the mappings in the specified map to this map. These mappings will replace all mappings that this map had for any of the keys currently in the given map.
map | the map to copy mappings from. |
NullPointerException | if map null |
|
inline |
Removes the mapping with the specified key from this map.
key | the key of the mapping to remove. |
Implements java.util.Map< K, V >.
|
inline |
Returns the number of elements in this map.
Implements java.util.Map< K, V >.
|
inline |
Returns a collection of the values contained in this map. The collection is backed by this map so changes to one are reflected by the other. The collection supports remove, removeAll, retainAll and clear operations, and it does not support add or addAll operations.
This method returns a collection which is the subclass of AbstractCollection. The iterator method of this subclass returns a "wrapper object" over the iterator of map's entrySet(). The
method wraps the map's size method and the
method wraps the map's containsValue method.
The collection is created when this method is called for the first time and returned in response to all subsequent calls. This method may return different collections when multiple concurrent calls occur, since no synchronization is performed.
Implements java.util.Map< K, V >.