abstract static class AbstractBitwiseTrie.BasicEntry<K,V>
extends java.lang.Object
implements java.util.Map.Entry<K,V>, java.io.Serializable
Map.Entry
.Modifier and Type | Field and Description |
---|---|
protected K |
key |
private static long |
serialVersionUID |
protected V |
value |
Constructor and Description |
---|
BasicEntry(K key) |
BasicEntry(K key,
V value) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
K |
getKey() |
V |
getValue() |
int |
hashCode() |
V |
setKeyValue(K key,
V value)
Replaces the current key and value with the provided key & value.
|
V |
setValue(V value) |
java.lang.String |
toString() |
private static final long serialVersionUID
protected K key
protected V value