Package io.netty.util.collection
Class LongObjectHashMap.MapEntry
- java.lang.Object
-
- io.netty.util.collection.LongObjectHashMap.MapEntry
-
- All Implemented Interfaces:
java.util.Map.Entry<java.lang.Long,V>
- Enclosing class:
- LongObjectHashMap<V>
final class LongObjectHashMap.MapEntry extends java.lang.Object implements java.util.Map.Entry<java.lang.Long,V>
A single entry in the map.
-
-
Field Summary
Fields Modifier and Type Field Description private int
entryIndex
-
Constructor Summary
Constructors Constructor Description MapEntry(int entryIndex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Long
getKey()
V
getValue()
V
setValue(V value)
private void
verifyExists()
-
-
-
Method Detail
-
getKey
public java.lang.Long getKey()
- Specified by:
getKey
in interfacejava.util.Map.Entry<java.lang.Long,V>
-
getValue
public V getValue()
- Specified by:
getValue
in interfacejava.util.Map.Entry<java.lang.Long,V>
-
setValue
public V setValue(V value)
- Specified by:
setValue
in interfacejava.util.Map.Entry<java.lang.Long,V>
-
verifyExists
private void verifyExists()
-
-