Package org.datanucleus.flush
Class MapPutOperation
- java.lang.Object
-
- org.datanucleus.flush.MapPutOperation
-
- All Implemented Interfaces:
Operation,SCOOperation
public class MapPutOperation extends Object implements SCOOperation
Put operation for a map where we have a backing store.
-
-
Constructor Summary
Constructors Constructor Description MapPutOperation(ObjectProvider op, int fieldNum, Object key, Object value)MapPutOperation(ObjectProvider op, MapStore store, Object key, Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetKey()Accessor for the key being put.AbstractMemberMetaDatagetMemberMetaData()Accessor for the metadata for the member that this operation is for.ObjectProvidergetObjectProvider()Accessor for the ObjectProvider of the object that this operation is performed on.StoregetStore()Accessor for the backing store for this operation.ObjectgetValue()Accessor for the value being put against this key.voidperform()Perform the put(Object, Object) operation to the backing store.StringtoString()
-
-
-
Constructor Detail
-
MapPutOperation
public MapPutOperation(ObjectProvider op, MapStore store, Object key, Object value)
-
MapPutOperation
public MapPutOperation(ObjectProvider op, int fieldNum, Object key, Object value)
-
-
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 put.- Returns:
- Key being put
-
getValue
public Object getValue()
Accessor for the value being put against this key.- Returns:
- Value being put against the key
-
perform
public void perform()
Perform the put(Object, Object) operation to the backing store.
-
getStore
public Store getStore()
Description copied from interface:SCOOperationAccessor for the backing store for this operation.- Specified by:
getStorein interfaceSCOOperation- Returns:
- The backing store
-
getObjectProvider
public ObjectProvider getObjectProvider()
Description copied from interface:OperationAccessor for the ObjectProvider of the object that this operation is performed on.- Specified by:
getObjectProviderin interfaceOperation- Returns:
- The ObjectProvider
-
-