Package com.tangosol.util
Class MultiBinaryLongMap.SafeEntry
java.lang.Object
com.tangosol.util.MultiBinaryLongMap.SafeEntry
- All Implemented Interfaces:
BinaryLongMap.Entry
- Enclosing class:
MultiBinaryLongMap
SafeEntry is an immutable
BinaryLongMap.Entry
implementation that
exposes the logical contents of an underlying Entry in a way that is
safe from mutations or being held as a reference.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final BinaryLongMap.Entry
The underlying entry (used for binary key retrieval).protected final long
The associated value -
Constructor Summary
ConstructorsConstructorDescriptionSafeEntry
(BinaryLongMap.Entry entry) Construct a SafeEntry backed by the specified underlying entry. -
Method Summary
-
Field Details
-
f_entry
The underlying entry (used for binary key retrieval). -
f_lValue
protected final long f_lValueThe associated value
-
-
Constructor Details
-
SafeEntry
Construct a SafeEntry backed by the specified underlying entry.- Parameters:
entry
- the underlying entry.
-
-
Method Details
-
getKey
Obtain the key.- Specified by:
getKey
in interfaceBinaryLongMap.Entry
- Returns:
- the key as a
Binary
-
getValue
public long getValue()Obtain the value associated with this entry.- Specified by:
getValue
in interfaceBinaryLongMap.Entry
- Returns:
- the associated value as a long
-
setValue
Set the value associated with this entry.Note: in some implementations, this operation may cause this Entry to be replaced with another Entry instance in the underlying representation.
- Specified by:
setValue
in interfaceBinaryLongMap.Entry
- Parameters:
lValue
- the value to associate with this entry- Returns:
- an
BinaryLongMap.Entry
with the new value, which may or may not be the sameBinaryLongMap.Entry
as this
-