|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.Collections.UnmodifiableMap
| Nested Class Summary | |
(package private) static class |
Collections.UnmodifiableMap.UnmodifiableEntrySet
We need this class in addition to UnmodifiableSet as Map.Entries themselves permit modification of the backing Map via their setValue operation. |
| Nested classes inherited from class java.util.Map |
Map.Entry |
| Field Summary | |
private Set |
entrySet
|
private Set |
keySet
|
private Map |
m
|
private static long |
serialVersionUID
|
private Collection |
values
|
| Constructor Summary | |
(package private) |
Collections.UnmodifiableMap(Map m)
|
| Method Summary | |
void |
clear()
Removes all mappings from this map (optional operation). |
boolean |
containsKey(Object key)
Returns true if this map contains a mapping for the specified key. |
boolean |
containsValue(Object val)
Returns true if this map maps one or more keys to the specified value. |
Set |
entrySet()
Returns a set view of the mappings contained in this map. |
boolean |
equals(Object o)
Compares the specified object with this map for equality. |
Object |
get(Object key)
Returns the value to which this map maps the specified key. |
int |
hashCode()
Returns the hash code value for this map. |
boolean |
isEmpty()
Returns true if this map contains no key-value mappings. |
Set |
keySet()
Returns a set view of the keys contained in this map. |
Object |
put(Object key,
Object value)
Associates the specified value with the specified key in this map (optional operation). |
void |
putAll(Map t)
Copies all of the mappings from the specified map to this map (optional operation). |
Object |
remove(Object key)
Removes the mapping for this key from this map if it is present (optional operation). |
int |
size()
Returns the number of key-value mappings in this map. |
String |
toString()
Returns a string representation of the object. |
Collection |
values()
Returns a collection view of the values contained in this map. |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
private static final long serialVersionUID
private final Map m
private transient Set keySet
private transient Set entrySet
private transient Collection values
| Constructor Detail |
Collections.UnmodifiableMap(Map m)
| Method Detail |
public int size()
Map
size in interface Mappublic boolean isEmpty()
Map
isEmpty in interface Mappublic boolean containsKey(Object key)
Map
containsKey in interface Mapkey - key whose presence in this map is to be tested.
public boolean containsValue(Object val)
Map
containsValue in interface Mapval - value whose presence in this map is to be tested.
public Object get(Object key)
MapMore formally, if this map contains a mapping from a key k to a value v such that (key==null ? k==null : key.equals(k)), then this method returns v; otherwise it returns null. (There can be at most one such mapping.)
get in interface Mapkey - key whose associated value is to be returned.
Map.containsKey(Object)
public Object put(Object key,
Object value)
Mapm.containsKey(k) would return
true.))
put in interface Mapkey - key with which the specified value is to be associated.value - value to be associated with the specified key.
public Object remove(Object key)
Map(key==null ? k==null : key.equals(k)), that mapping
is removed. (The map can contain at most one such mapping.)
Returns the value to which the map previously associated the key, or null if the map contained no mapping for this key. (A null return can also indicate that the map previously associated null with the specified key if the implementation supports null values.) The map will not contain a mapping for the specified key once the call returns.
remove in interface Mapkey - key whose mapping is to be removed from the map.
public void putAll(Map t)
Mapput(k, v) on this map once
for each mapping from key k to value v in the
specified map. The behavior of this operation is unspecified if the
specified map is modified while the operation is in progress.
putAll in interface Mapt - Mappings to be stored in this map.public void clear()
Map
clear in interface Mappublic Set keySet()
Map
keySet in interface Mappublic Set entrySet()
MapMap.Entry. The set is backed by the
map, so changes to the map are reflected in the set, and vice-versa.
If the map is modified while an iteration over the set is in progress,
the results of the iteration are undefined. The set supports element
removal, which removes the corresponding mapping from the map, via the
Iterator.remove, Set.remove, removeAll,
retainAll and clear operations. It does not support
the add or addAll operations.
entrySet in interface Mappublic Collection values()
Map
values in interface Mappublic boolean equals(Object o)
Map
equals in interface Mapequals in class Objecto - the reference object with which to compare.
true if this object is the same as the obj
argument; false otherwise.Object.hashCode(),
Hashtablepublic int hashCode()
Map
hashCode in interface MaphashCode in class ObjectObject.equals(java.lang.Object),
Hashtablepublic String toString()
ObjecttoString method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||