Package org.datanucleus.flush
Class ListSetOperation<E>
- java.lang.Object
-
- org.datanucleus.flush.ListSetOperation<E>
-
- All Implemented Interfaces:
Operation,SCOOperation
public class ListSetOperation<E> extends java.lang.Object implements SCOOperation
Set operation for a list where we have a backing store.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) booleanallowCascadeDeleteWhether to allow cascade-delete checks.(package private) intfieldNumber(package private) intindexThe position to set the value at.(package private) DNStateManagersm(package private) ListStore<E>store(package private) EvalueThe value to set.
-
Constructor Summary
Constructors Constructor Description ListSetOperation(DNStateManager sm, int fieldNum, int index, E value, boolean allowCascadeDelete)ListSetOperation(DNStateManager sm, ListStore<E> store, int index, E value, boolean allowCascadeDelete)
-
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 set(int, Object) operation to the backing store.java.lang.StringtoString()
-
-
-
Field Detail
-
sm
final DNStateManager sm
-
fieldNumber
final int fieldNumber
-
index
final int index
The position to set the value at.
-
value
final E value
The value to set.
-
allowCascadeDelete
boolean allowCascadeDelete
Whether to allow cascade-delete checks.
-
-
Constructor Detail
-
ListSetOperation
public ListSetOperation(DNStateManager sm, ListStore<E> store, int index, E value, boolean allowCascadeDelete)
-
ListSetOperation
public ListSetOperation(DNStateManager sm, int fieldNum, int index, E value, boolean allowCascadeDelete)
-
-
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 set(int, 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
-
getStateManager
public DNStateManager getStateManager()
Description copied from interface:OperationAccessor for StateManager of the object that this operation is performed on.- Specified by:
getStateManagerin interfaceOperation- Returns:
- StateManager
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-