Package com.tangosol.util
Class MultiBinaryLongMap.AbstractDelegateBinaryLongMap.DelegateEntryVisitor.WrapperEntry
java.lang.Object
com.tangosol.util.MultiBinaryLongMap.AbstractDelegateBinaryLongMap.DelegateEntryVisitor.WrapperEntry
- All Implemented Interfaces:
BinaryLongMap.Entry
protected class MultiBinaryLongMap.AbstractDelegateBinaryLongMap.DelegateEntryVisitor.WrapperEntry
extends Object
implements BinaryLongMap.Entry
WrapperEntry is used to wrap an Entry from the master key-tree
(which associates the key with the encoded slot-id) and
associate it with the logical value associated with this
AbstractDelegatingBinaryLongMap for the purposes of exposing
to the predicate. The purpose of the WrapperEntry is to limit
the amount
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetKey()
Obtain the key.long
getValue()
Obtain the value associated with this entry.void
reset
(BinaryLongMap.Entry entry) Reset the WrapperEntry to represent a different underlying Entry.setValue
(long lValue) Set the value associated with this entry.
-
Field Details
-
m_entry
The underlying Entry.
-
-
Constructor Details
-
WrapperEntry
protected WrapperEntry()
-
-
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
-
reset
Reset the WrapperEntry to represent a different underlying Entry.- Parameters:
entry
- the new entry to wrap
-