class CfgPropItem.MapEntry
extends java.lang.Object
implements java.util.Map.Entry
Constructor and Description |
---|
MapEntry() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o)
Compares the specified object with this entry for equality.
|
java.lang.Object |
getKey()
Returns the key corresponding to this entry.
|
java.lang.Object |
getValue()
Returns the value corresponding to this entry.
|
int |
hashCode()
Returns the hash code value for this map entry.
|
java.lang.Object |
setValue(java.lang.Object value)
Replaces the value corresponding to this entry with the specified
value (optional operation).
|
public java.lang.Object getKey()
getKey
in interface java.util.Map.Entry
public java.lang.Object getValue()
getValue
in interface java.util.Map.Entry
public java.lang.Object setValue(java.lang.Object value)
setValue
in interface java.util.Map.Entry
value
- new value to be stored in this entry.java.lang.ClassCastException
- if the class of the specified value
prevents it from being stored in the backing map.java.lang.IllegalArgumentException
- if some aspect of this value
prevents it from being stored in the backing map.java.lang.NullPointerException
- the backing map does not permit
null values, and the specified value is
null.public boolean equals(java.lang.Object o)
(e1.getKey()==null ? e2.getKey()==null : e1.getKey().equals(e2.getKey())) && (e1.getValue()==null ? e2.getValue()==null : e1.getValue().equals(e2.getValue()))This ensures that the equals method works properly across different implementations of the Map.Entry interface.
equals
in interface java.util.Map.Entry
equals
in class java.lang.Object
o
- object to be compared for equality with this map entry.public int hashCode()
(e.getKey()==null ? 0 : e.getKey().hashCode()) ^ (e.getValue()==null ? 0 : e.getValue().hashCode())This ensures that e1.equals(e2) implies that e1.hashCode()==e2.hashCode() for any two Entries e1 and e2, as required by the general contract of Object.hashCode.
hashCode
in interface java.util.Map.Entry
hashCode
in class java.lang.Object
Object.hashCode()
,
Object.equals(Object)
,
equals(Object)