Package org.datanucleus.flush
Class CollectionAddOperation
- java.lang.Object
-
- org.datanucleus.flush.CollectionAddOperation
-
- All Implemented Interfaces:
Operation,SCOOperation
- Direct Known Subclasses:
ListAddAtOperation
public class CollectionAddOperation extends Object implements SCOOperation
Add operation for a collection where we have a backing store.
-
-
Constructor Summary
Constructors Constructor Description CollectionAddOperation(ObjectProvider op, int fieldNum, Object value)CollectionAddOperation(ObjectProvider op, CollectionStore store, Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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 added.voidperform()Perform the add(Object) operation to the backing store.StringtoString()
-
-
-
Constructor Detail
-
CollectionAddOperation
public CollectionAddOperation(ObjectProvider op, CollectionStore store, Object value)
-
CollectionAddOperation
public CollectionAddOperation(ObjectProvider op, int fieldNum, 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
-
getValue
public Object getValue()
Accessor for the value being added.- Returns:
- Value being added
-
perform
public void perform()
Perform the add(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
-
-