Package org.datanucleus.flush
Class CollectionClearOperation
- java.lang.Object
-
- org.datanucleus.flush.CollectionClearOperation
-
- All Implemented Interfaces:
Operation,SCOOperation
public class CollectionClearOperation extends Object implements SCOOperation
Clear operation for a collection where we have a backing store.
-
-
Constructor Summary
Constructors Constructor Description CollectionClearOperation(ObjectProvider op, int fieldNum)CollectionClearOperation(ObjectProvider op, CollectionStore store)
-
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.voidperform()Perform the clear() operation on the specified backing store.StringtoString()
-
-
-
Constructor Detail
-
CollectionClearOperation
public CollectionClearOperation(ObjectProvider op, CollectionStore store)
-
CollectionClearOperation
public CollectionClearOperation(ObjectProvider op, int fieldNum)
-
-
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
-
perform
public void perform()
Perform the clear() operation on the specified 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
-
-