java.util
Class EnumMap<K,extends,Enum,K,V>
- Cloneable, Map<K,V>, Serializable
EnumMap | V> clone()
|
Set | V>> entrySet() - Returns a set view of the mappings in this Map.
|
void | clear() - Remove all entries from this Map (optional operation).
|
boolean | containsKey(Object key) - Returns true if this contains a mapping for the given key.
|
boolean | containsValue(Object value) - Returns true if this contains at least one mapping with the given value.
|
boolean | equals(Object o) - Compares the specified object with this map for equality.
|
V | get(Object key) - Returns the value mapped by the given key.
|
Set | keySet() - Returns a set view of this map's keys.
|
V | put(K key, V value) - Associates the given key to the given value (optional operation).
|
void | putAll(extends K, V> map) - Copies all entries of the given map to this one (optional operation).
|
V | remove(Object key) - Removes the mapping for this key if present (optional operation).
|
int | size() - Returns the number of key-value mappings in the map.
|
Collection | values() - Returns a collection or bag view of this map's values.
|
V>> entrySet , clear , clone , containsKey , containsValue , equals , get , hashCode , isEmpty , keySet , put , putAll , remove , size , toString , values |
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
EnumMap
public EnumMap(Class keyType)
V> clone
public EnumMapV> clone()
V>> entrySet
public SetV>> entrySet()
Returns a set view of the mappings in this Map. Each element in the
set must be an implementation of Map.Entry. The set is backed by
the map, so that changes in one show up in the other. Modifications
made while an iterator is in progress cause undefined behavior. If
the set supports removal, these methods must be valid:
Iterator.remove
, Set.remove
,
removeAll
, retainAll
, and clear
.
Element addition is not supported via this set.
- V>> entrySet in interface Map<K,V>
- V>> entrySet in interface AbstractMap<K,V>
clear
public void clear()
Remove all entries from this Map (optional operation). This default
implementation calls entrySet().clear(). NOTE: If the entry set does
not permit clearing, then this will fail, too. Subclasses often
override this for efficiency. Your implementation of entrySet() should
not call AbstractMap.clear
unless you want an infinite loop.
- clear in interface Map<K,V>
- clear in interface AbstractMap<K,V>
containsKey
public boolean containsKey(Object key)
Returns true if this contains a mapping for the given key. This
implementation does a linear search, O(n), over the
entrySet()
, returning true
if a match
is found, false
if the iteration ends. Many subclasses
can implement this more efficiently.
- containsKey in interface Map<K,V>
- containsKey in interface AbstractMap<K,V>
key
- the key to search for
- true if the map contains the key
containsValue
public boolean containsValue(Object value)
Returns true if this contains at least one mapping with the given value.
This implementation does a linear search, O(n), over the
entrySet()
, returning true
if a match
is found, false
if the iteration ends. A match is
defined as a value, v, where (value == null ? v == null :
value.equals(v))
. Subclasses are unlikely to implement
this more efficiently.
- containsValue in interface Map<K,V>
- containsValue in interface AbstractMap<K,V>
value
- the value to search for
- true if the map contains the value
equals
public boolean equals(Object o)
Compares the specified object with this map for equality. Returns
true
if the other object is a Map with the same mappings,
that is,
o instanceof Map && entrySet().equals(((Map) o).entrySet();
- equals in interface Map<K,V>
- equals in interface AbstractMap<K,V>
o
- the object to be compared
- true if the object equals this map
get
public V get(Object key)
Returns the value mapped by the given key. Returns null
if
there is no mapping. However, in Maps that accept null values, you
must rely on containsKey
to determine if a mapping exists.
This iteration takes linear time, searching entrySet().iterator() of
the key. Many implementations override this method.
- get in interface Map<K,V>
- get in interface AbstractMap<K,V>
- the value associated with the key, or null if key not in map
keySet
public Set keySet()
Returns a set view of this map's keys. The set is backed by the map,
so changes in one show up in the other. Modifications while an iteration
is in progress produce undefined behavior. The set supports removal
if entrySet() does, but does not support element addition.
This implementation creates an AbstractSet, where the iterator wraps
the entrySet iterator, size defers to the Map's size, and contains
defers to the Map's containsKey. The set is created on first use, and
returned on subsequent uses, although since no synchronization occurs,
there is a slight possibility of creating two sets.
- keySet in interface Map<K,V>
- keySet in interface AbstractMap<K,V>
put
public V put(K key,
V value)
Associates the given key to the given value (optional operation). If the
map already contains the key, its value is replaced. This implementation
simply throws an UnsupportedOperationException. Be aware that in a map
that permits null
values, a null return does not always
imply that the mapping was created.
- put in interface Map<K,V>
- put in interface AbstractMap<K,V>
key
- the key to mapvalue
- the value to be mapped
- the previous value of the key, or null if there was no mapping
putAll
public void putAll(extends K,
V> map)
Copies all entries of the given map to this one (optional operation). If
the map already contains a key, its value is replaced. This implementation
simply iterates over the map's entrySet(), calling put
,
so it is not supported if puts are not.
- putAll in interface Map<K,V>
- putAll in interface AbstractMap<K,V>
remove
public V remove(Object key)
Removes the mapping for this key if present (optional operation). This
implementation iterates over the entrySet searching for a matching
key, at which point it calls the iterator's remove
method.
It returns the result of getValue()
on the entry, if found,
or null if no entry is found. Note that maps which permit null values
may also return null if the key was removed. If the entrySet does not
support removal, this will also fail. This is O(n), so many
implementations override it for efficiency.
- remove in interface Map<K,V>
- remove in interface AbstractMap<K,V>
- the value the key mapped to, or null if not present.
Null may also be returned if null values are allowed
in the map and the value of this mapping is null.
size
public int size()
Returns the number of key-value mappings in the map. If there are more
than Integer.MAX_VALUE mappings, return Integer.MAX_VALUE. This is
implemented as entrySet().size()
.
- size in interface Map<K,V>
- size in interface AbstractMap<K,V>
values
public Collection values()
Returns a collection or bag view of this map's values. The collection
is backed by the map, so changes in one show up in the other.
Modifications while an iteration is in progress produce undefined
behavior. The collection supports removal if entrySet() does, but
does not support element addition.
This implementation creates an AbstractCollection, where the iterator
wraps the entrySet iterator, size defers to the Map's size, and contains
defers to the Map's containsValue. The collection is created on first
use, and returned on subsequent uses, although since no synchronization
occurs, there is a slight possibility of creating two collections.
- values in interface Map<K,V>
- values in interface AbstractMap<K,V>
- a Collection view of the values
EnumMap.java - Map where keys are enum constants
Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.