Class MultiBinaryLongMap.WrapperBinaryLongMap
- java.lang.Object
-
- com.tangosol.util.MultiBinaryLongMap.WrapperBinaryLongMap
-
- All Implemented Interfaces:
BinaryLongMap
- Direct Known Subclasses:
MultiBinaryLongMap.PrimaryBinaryLongMap,MultiBinaryLongMap.SafeBinaryLongMap
- Enclosing class:
- MultiBinaryLongMap
public static class MultiBinaryLongMap.WrapperBinaryLongMap extends Object implements BinaryLongMap
The WrapperBinaryLongMap is a BinaryLongMap implementation that wraps an underlying BinaryLongMap.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classMultiBinaryLongMap.WrapperBinaryLongMap.WrapperIteratorA wrapper key Iterator that implementsIterator.remove()by coming back through the WrapperBinaryLongMap'sremove(Binary)method.-
Nested classes/interfaces inherited from interface com.tangosol.util.BinaryLongMap
BinaryLongMap.Entry, BinaryLongMap.EntryVisitor, BinaryLongMap.SimpleMapImpl
-
-
Field Summary
Fields Modifier and Type Field Description protected BinaryLongMapm_blmThe underlying BinaryLongMap.
-
Constructor Summary
Constructors Constructor Description WrapperBinaryLongMap(BinaryLongMap blm)Construct a WrapperBinaryLongMap based on the specified BinaryLongMap.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Initialize the map to an empty state.longget(Binary binKey)Find the specified key in the map and return the value associated with it.BinaryLongMapgetMap()Return the underlying BinaryLongMap.voidinternKeys(Object o)Internal opaque method: De-duplicate keys.Iterator<Binary>keys()Obtain an iterator of the keys stored in the map.Iterator<Binary>keys(Predicate<BinaryLongMap.Entry> predicate)Obtain an iterator of the keys stored in the map whose correspondingEntrymatches the passedPredicate<Entry>.voidput(Binary binKey, long lValue)Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.booleanputIfAbsent(Binary binKey, long lValue)Store the passed value for the specified key, only if the key does not currently exist in the map.voidremove(Binary binKey)Blindly remove the specified Binary key from the map.booleanremove(Binary binKey, long lValue)Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.booleanreplace(Binary binKey, long lValueOld, long lValueNew)Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.protected voidsetMap(BinaryLongMap blm)Return the underlying BinaryLongMap.intsize()Determine the size of the map.voidvisit(Binary binKey, BinaryLongMap.EntryVisitor visitor)Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.voidvisitAll(BinaryLongMap.EntryVisitor visitor)Apply the specified visitor to all entries in the BinaryLongMap.
-
-
-
Field Detail
-
m_blm
protected BinaryLongMap m_blm
The underlying BinaryLongMap.
-
-
Constructor Detail
-
WrapperBinaryLongMap
public WrapperBinaryLongMap(BinaryLongMap blm)
Construct a WrapperBinaryLongMap based on the specified BinaryLongMap.- Parameters:
blm- the BinaryLongMap to wrap
-
-
Method Detail
-
getMap
public BinaryLongMap getMap()
Return the underlying BinaryLongMap.- Returns:
- the underlying BinaryLongMap
-
setMap
protected void setMap(BinaryLongMap blm)
Return the underlying BinaryLongMap.- Parameters:
blm- the underlying BinaryLongMap
-
get
public long get(Binary binKey)
Find the specified key in the map and return the value associated with it.- Specified by:
getin interfaceBinaryLongMap- Parameters:
binKey- a Binary key- Returns:
- the value associated with the specified key, or 0L if the specified key is not in the map
-
put
public void put(Binary binKey, long lValue)
Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.Note that associating the value zero with a key is analogous to removing the key.
- Specified by:
putin interfaceBinaryLongMap- Parameters:
binKey- the Binary key to add or updatelValue- the value to associate with the key
-
putIfAbsent
public boolean putIfAbsent(Binary binKey, long lValue)
Store the passed value for the specified key, only if the key does not currently exist in the map.Note that associating the value zero with a key using this method will have no effect, since were that key already present, there would be no change, and were it not present, the value zero is analogous to removing the key, which again is no change (since it is not present).
- Specified by:
putIfAbsentin interfaceBinaryLongMap- Parameters:
binKey- a Binary keylValue- the new value to associate with the passed key- Returns:
- true iff the key was not present in the map, and now it is present in the map associated with the passed value
-
replace
public boolean replace(Binary binKey, long lValueOld, long lValueNew)
Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.Note that replacing the value of zero is analogous to
putIfAbsent, and associating the value zero with a key using this method is the same asremovepassing the old value to match.- Specified by:
replacein interfaceBinaryLongMap- Parameters:
binKey- a Binary keylValueOld- the assumed old value to replacelValueNew- the new value to associate with the passed key- Returns:
- true iff the key was associated with the passed "old" value, and now it is associated with the passed "new" value
-
remove
public void remove(Binary binKey)
Blindly remove the specified Binary key from the map.- Specified by:
removein interfaceBinaryLongMap- Parameters:
binKey- a Binary key
-
remove
public boolean remove(Binary binKey, long lValue)
Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.Note that removing an association whose value is zero has no effect.
- Specified by:
removein interfaceBinaryLongMap- Parameters:
binKey- a Binary keylValue- the value that the key must have in order to be removed- Returns:
- true iff the map contained the key, it was associated with the specified value, and has now been removed
-
clear
public void clear()
Initialize the map to an empty state.- Specified by:
clearin interfaceBinaryLongMap
-
size
public int size()
Determine the size of the map.- Specified by:
sizein interfaceBinaryLongMap- Returns:
- the number of unique keys stored in the map
-
keys
public Iterator<Binary> keys()
Obtain an iterator of the keys stored in the map.- Specified by:
keysin interfaceBinaryLongMap- Returns:
- an Iterator of Binary keys
-
keys
public Iterator<Binary> keys(Predicate<BinaryLongMap.Entry> predicate)
Obtain an iterator of the keys stored in the map whose correspondingEntrymatches the passedPredicate<Entry>.The entry passed to the predicate should be treated as read-only, and any attempt to modify the entry may have undefined behavior and/or throw an Exception. Modifications to entries should instead be performed using an
BinaryLongMap.EntryVisitorvia theBinaryLongMap.visit(com.tangosol.util.Binary, com.tangosol.util.BinaryLongMap.EntryVisitor)orBinaryLongMap.visitAll(com.tangosol.util.BinaryLongMap.EntryVisitor)methods.- Specified by:
keysin interfaceBinaryLongMap- Parameters:
predicate- a Predicate<Entry> to apply to each Entry- Returns:
- an Iterator of Binary keys
-
visit
public void visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added. The visited entry may or may not logically exist in the BinaryLongMap (e.g. it may be associated with a value of 0L) but is guaranteed to be safe to be added or removed (viaBinaryLongMap.Entry.setValue(long)).- Specified by:
visitin interfaceBinaryLongMap- Parameters:
binKey- the key to visitvisitor- the visitor to apply
-
visitAll
public void visitAll(BinaryLongMap.EntryVisitor visitor)
Apply the specified visitor to all entries in the BinaryLongMap.- Specified by:
visitAllin interfaceBinaryLongMap- Parameters:
visitor- the visitor to apply
-
internKeys
public void internKeys(Object o)
Internal opaque method: De-duplicate keys.- Specified by:
internKeysin interfaceBinaryLongMap- Parameters:
o- some implementation-specific object
-
-