- java.lang.Object
-
- org.datanucleus.flush.MapRemoveOperation<K,V>
-
- All Implemented Interfaces:
Operation,SCOOperation
public class MapRemoveOperation<K,V> extends Object implements SCOOperation
Remove operation for a map where we have a backing store.
-
-
Constructor Summary
Constructors Constructor Description MapRemoveOperation(DNStateManager sm, int fieldNum, K key, V val)MapRemoveOperation(DNStateManager sm, MapStore store, K key, V val)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetKey()Accessor for the key being removed.AbstractMemberMetaDatagetMemberMetaData()Accessor for the metadata for the member that this operation is for.DNStateManagergetStateManager()Accessor for StateManager of the object that this operation is performed on.StoregetStore()Accessor for the backing store for this operation.ObjectgetValue()Accessor for the value being removed for this key (if known).voidperform()Perform the remove(Object) operation on the specified container.StringtoString()
-
-
-
Constructor Detail
-
MapRemoveOperation
public MapRemoveOperation(DNStateManager sm, MapStore store, K key, V val)
-
MapRemoveOperation
public MapRemoveOperation(DNStateManager sm, int fieldNum, K key, V val)
-
-
Method Detail
-
getMemberMetaData
public AbstractMemberMetaData getMemberMetaData()
Description copied from interface:SCOOperationAccessor for the metadata for the member that this operation is for.- Specified by:
getMemberMetaDatain interfaceSCOOperation- Returns:
- The member metadata
-
getKey
public Object getKey()
Accessor for the key being removed.- Returns:
- Key being removed
-
getValue
public Object getValue()
Accessor for the value being removed for this key (if known).- Returns:
- Value being removed if known
-
perform
public void perform()
Perform the remove(Object) operation on the specified container.
-
getStore
public Store getStore()
Description copied from interface:SCOOperationAccessor for the backing store for this operation.- Specified by:
getStorein interfaceSCOOperation- Returns:
- The backing store
-
getStateManager
public DNStateManager getStateManager()
Description copied from interface:OperationAccessor for StateManager of the object that this operation is performed on.- Specified by:
getStateManagerin interfaceOperation- Returns:
- StateManager
-
-