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