Package org.datanucleus.flush
Class ListRemoveAtOperation
- java.lang.Object
-
- org.datanucleus.flush.CollectionRemoveOperation
-
- org.datanucleus.flush.ListRemoveAtOperation
-
- All Implemented Interfaces:
Operation,SCOOperation
public class ListRemoveAtOperation extends CollectionRemoveOperation
Remove operation for a list at a particular index where we have a backing store.
-
-
Constructor Summary
Constructors Constructor Description ListRemoveAtOperation(ObjectProvider op, int fieldNum, int index, Object value)ListRemoveAtOperation(ObjectProvider op, ListStore store, int index)
-
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 remove(int) operation on the specified container.StringtoString()-
Methods inherited from class org.datanucleus.flush.CollectionRemoveOperation
getValue
-
-
-
-
Constructor Detail
-
ListRemoveAtOperation
public ListRemoveAtOperation(ObjectProvider op, ListStore store, int index)
-
ListRemoveAtOperation
public ListRemoveAtOperation(ObjectProvider op, int fieldNum, int index, 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- Overrides:
getMemberMetaDatain classCollectionRemoveOperation- Returns:
- The member metadata
-
perform
public void perform()
Perform the remove(int) operation on the specified container.- Specified by:
performin interfaceOperation- Overrides:
performin classCollectionRemoveOperation
-
getStore
public Store getStore()
Description copied from interface:SCOOperationAccessor for the backing store for this operation.- Specified by:
getStorein interfaceSCOOperation- Overrides:
getStorein classCollectionRemoveOperation- 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- Overrides:
getObjectProviderin classCollectionRemoveOperation- Returns:
- The ObjectProvider
-
toString
public String toString()
- Overrides:
toStringin classCollectionRemoveOperation
-
-