Uses of Class
org.sormula.operation.ModifyOperation

Packages that use ModifyOperation
org.sormula.operation Classes that perform SQL operations such as select, update, insert, delete. 
 

Uses of ModifyOperation in org.sormula.operation
 

Subclasses of ModifyOperation in org.sormula.operation
 class DeleteOperation<R>
          SQL delete operation for row of type R.
 class InsertOperation<R>
          SQL insert operation for row of type R.
 class SaveOperation<R>
          SQL update or insert operation for row of type R.
 class UpdateOperation<R>
          SQL update operation for row of type R.
 

Methods in org.sormula.operation that return ModifyOperation
 ModifyOperation<R> FullModify.getModifyOperation()
          Deprecated. Gets modify operation supplied in constructor.
 

Constructors in org.sormula.operation with parameters of type ModifyOperation
FullModify(ModifyOperation<R> modifyOperation)
          Deprecated. Constructs for a modify operation.