static class ConcurrentSkipListMap.SnapshotEntry<K,V>
extends java.lang.Object
implements java.util.Map.Entry<K,V>
| Constructor and Description |
|---|
SnapshotEntry(K key,
V value)
Creates a new entry representing the given key and value.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o) |
K |
getKey()
Returns the key corresponding to this entry.
|
V |
getValue()
Returns the value corresponding to this entry.
|
int |
hashCode() |
V |
setValue(V value)
Always fails, throwing UnsupportedOperationException.
|
java.lang.String |
toString()
Returns a String consisting of the key followed by an
equals sign ("=") followed by the associated
value.
|
public K getKey()
public V getValue()
public boolean equals(java.lang.Object o)
public int hashCode()
public java.lang.String toString()
toString in class java.lang.Object