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 Objectkey(package private) SequencedHashMap.MapEntrynext(package private) SequencedHashMap.MapEntryprevprivate Objectvalue
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)ObjectgetKey()Gets the key from the pair.ObjectgetValue()Gets the value from the pair.inthashCode()Compute the instance's hash codeObjectsetValue(Object newValue)StringtoString()
-
-
-
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:KeyValueGets the key from the pair.
-
getValue
public Object getValue()
Description copied from interface:KeyValueGets the value from the pair.
-
hashCode
public int hashCode()
Compute the instance's hash code
-
equals
public boolean equals(Object obj)
-
-