Package com.tangosol.util
Interface BinaryLongMap.Entry
- All Known Implementing Classes:
MultiBinaryLongMap.AbstractDelegateBinaryLongMap.DelegateEntryVisitor.WrapperEntry
,MultiBinaryLongMap.MaskedBinaryLongMap.MaskedEntry
,MultiBinaryLongMap.SafeEntry
- Enclosing interface:
BinaryLongMap
public static interface BinaryLongMap.Entry
Represents an Entry stored in a BinaryLongMap.
-
Method Details
-
getKey
Binary getKey()Obtain the key.- Returns:
- the key as a
Binary
-
getValue
long getValue()Obtain the value associated with this 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.
- 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
-