Package org.apache.directory.api.util
Class SequencedHashMap.MapEntry
- java.lang.Object
-
- org.apache.directory.api.util.SequencedHashMap.MapEntry
-
-
Field Summary
Fields Modifier and Type Field Description private Object
key
(package private) SequencedHashMap.MapEntry
next
(package private) SequencedHashMap.MapEntry
prev
private Object
value
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Object
getKey()
Gets the key from the pair.Object
getValue()
Gets the value from the pair.int
hashCode()
Compute the instance's hash codeObject
setValue(Object newValue)
String
toString()
-
-
-
Field Detail
-
key
private final Object key
-
value
private Object value
-
next
SequencedHashMap.MapEntry next
-
prev
SequencedHashMap.MapEntry prev
-
-
Method Detail
-
getKey
public Object getKey()
Description copied from interface:KeyValue
Gets the key from the pair.
-
getValue
public Object getValue()
Description copied from interface:KeyValue
Gets the value from the pair.
-
hashCode
public int hashCode()
Compute the instance's hash code
-
equals
public boolean equals(Object obj)
-
-