public abstract class AbstractMapEntryDecorator extends java.lang.Object implements java.util.Map.Entry, KeyValue
Map.Entry
.Modifier and Type | Field and Description |
---|---|
protected java.util.Map.Entry |
entry
The
Map.Entry to decorate |
Constructor and Description |
---|
AbstractMapEntryDecorator(java.util.Map.Entry entry)
Constructor that wraps (not copies).
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object object) |
java.lang.Object |
getKey()
Gets the key from the pair.
|
protected java.util.Map.Entry |
getMapEntry()
Gets the map being decorated.
|
java.lang.Object |
getValue()
Gets the value from the pair.
|
int |
hashCode() |
java.lang.Object |
setValue(java.lang.Object object) |
java.lang.String |
toString() |
public AbstractMapEntryDecorator(java.util.Map.Entry entry)
entry
- the Map.Entry
to decorate, must not be nulljava.lang.IllegalArgumentException
- if the collection is nullprotected java.util.Map.Entry getMapEntry()
public java.lang.Object getKey()
KeyValue
public java.lang.Object getValue()
KeyValue
public java.lang.Object setValue(java.lang.Object object)
setValue
in interface java.util.Map.Entry
public boolean equals(java.lang.Object object)
equals
in interface java.util.Map.Entry
equals
in class java.lang.Object
public int hashCode()
hashCode
in interface java.util.Map.Entry
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
Copyright © 2001-2024 Apache Software Foundation. All Rights Reserved.