Class ConcurrentIntObjectHashMap.SimpleEntry<V>
- java.lang.Object
-
- com.strobel.collections.concurrent.ConcurrentIntObjectHashMap.SimpleEntry<V>
-
- All Implemented Interfaces:
IntObjectEntry<V>
- Enclosing class:
- ConcurrentIntObjectHashMap<V>
private static final class ConcurrentIntObjectHashMap.SimpleEntry<V> extends java.lang.Object implements IntObjectEntry<V>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
SimpleEntry(int key, V value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
key()
V
value()
-
-
-
Field Detail
-
_key
private final int _key
-
_value
private final V _value
-
-
Constructor Detail
-
SimpleEntry
private SimpleEntry(int key, V value)
-
-
Method Detail
-
key
public final int key()
- Specified by:
key
in interfaceIntObjectEntry<V>
-
value
@NotNull public final V value()
- Specified by:
value
in interfaceIntObjectEntry<V>
-
-