public static class AbstractChar2IntMap.BasicEntry extends java.lang.Object implements Char2IntMap.Entry
This class does not implement setValue()
, as the modification
would not be reflected in the base map.
Constructor and Description |
---|
BasicEntry() |
BasicEntry(java.lang.Character key,
java.lang.Integer value) |
BasicEntry(char key,
int value) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
char |
getCharKey()
Returns the key corresponding to this entry.
|
int |
getIntValue()
Returns the value corresponding to this entry.
|
int |
hashCode() |
int |
setValue(int value)
Replaces the value corresponding to this entry with the specified value (optional operation).
|
java.lang.String |
toString() |
getKey, getValue, setValue
public BasicEntry()
public BasicEntry(java.lang.Character key, java.lang.Integer value)
public BasicEntry(char key, int value)
public char getCharKey()
Char2IntMap.Entry
getCharKey
in interface Char2IntMap.Entry
Map.Entry.getKey()
public int getIntValue()
Char2IntMap.Entry
getIntValue
in interface Char2IntMap.Entry
Map.Entry.getValue()
public int setValue(int value)
Char2IntMap.Entry
setValue
in interface Char2IntMap.Entry
Map.Entry.setValue(Object)
public boolean equals(java.lang.Object o)
equals
in interface java.util.Map.Entry<java.lang.Character,java.lang.Integer>
equals
in class java.lang.Object
public int hashCode()
hashCode
in interface java.util.Map.Entry<java.lang.Character,java.lang.Integer>
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object