Class CollectionRemoveOperation<E>
java.lang.Object
org.datanucleus.flush.CollectionRemoveOperation<E>
- All Implemented Interfaces:
Operation, SCOOperation
- Direct Known Subclasses:
ListRemoveAtOperation
Remove operation for a collection.
This is usually for the situation where we have a backing store, but also can be used where we are removing an object from a collection and
the field is marked as cascade delete but we don't want to delete immediately.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) final booleanWhether to allow cascade-delete checks.(package private) final int(package private) final DNStateManager(package private) final CollectionStore<E> (package private) final EThe value to remove. -
Constructor Summary
ConstructorsConstructorDescriptionCollectionRemoveOperation(DNStateManager sm, int fieldNum, E value, boolean allowCascadeDelete) CollectionRemoveOperation(DNStateManager sm, CollectionStore<E> store, E value, boolean allowCascadeDelete) -
Method Summary
Modifier and TypeMethodDescriptionAccessor for the metadata for the member that this operation is for.Accessor for StateManager of the object that this operation is performed on.getStore()Accessor for the backing store for this operation.getValue()Accessor for the value being removed.voidperform()Perform the remove(Object) operation on the specified container.toString()
-
Field Details
-
sm
-
fieldNumber
final int fieldNumber -
store
-
value
The value to remove. -
allowCascadeDelete
final boolean allowCascadeDeleteWhether to allow cascade-delete checks.
-
-
Constructor Details
-
CollectionRemoveOperation
public CollectionRemoveOperation(DNStateManager sm, CollectionStore<E> store, E value, boolean allowCascadeDelete) -
CollectionRemoveOperation
public CollectionRemoveOperation(DNStateManager sm, int fieldNum, E value, boolean allowCascadeDelete)
-
-
Method Details
-
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
-
perform
-
getStore
Description copied from interface:SCOOperationAccessor for the backing store for this operation.- Specified by:
getStorein interfaceSCOOperation- Returns:
- The backing store
-
getStateManager
Description copied from interface:OperationAccessor for StateManager of the object that this operation is performed on.- Specified by:
getStateManagerin interfaceOperation- Returns:
- StateManager
-
toString
-