Uses of Class
org.sormula.active.operation.ActiveOperation

Packages that use ActiveOperation
org.sormula.active.operation Thread-safe and transaction-compliant database operations used by ActiveTable
 

Uses of ActiveOperation in org.sormula.active.operation
 

Subclasses of ActiveOperation in org.sormula.active.operation
 class ActiveLazySelector<R extends ActiveRecord<R>>
          Performs lazy loading of active records.
 class Delete<R extends ActiveRecord<R>>
          Delegate for Table.delete(Object)
 class DeleteAll<R extends ActiveRecord<R>>
          Delegate for Table.deleteAll(Collection) and Table.deleteAll().
 class DeleteAllBatch<R extends ActiveRecord<R>>
          Delegate for Table.deleteAllBatch(Collection).
 class Insert<R extends ActiveRecord<R>>
          Delegate for Table.insert(Object)
 class InsertAll<R extends ActiveRecord<R>>
          Delegate for Table.insertAll(Collection).
 class InsertAllBatch<R extends ActiveRecord<R>>
          Delegate for Table.insertAllBatch(Collection).
 class Save<R extends ActiveRecord<R>>
          Delegate for Table.save(Object)
 class SaveAll<R extends ActiveRecord<R>>
          Delegate for Table.saveAll(Collection).
 class Select<R extends ActiveRecord<R>>
          Delegate for Table.select(Object...).
 class SelectAll<R extends ActiveRecord<R>>
          Delegate for Table.selectAll().
 class SelectAllCustom<R extends ActiveRecord<R>>
          Delegate for Table.selectAllCustom(String, Object...).
 class SelectAllWhere<R extends ActiveRecord<R>>
          Delegate for Table.selectAllWhere(String, Object...).
 class SelectAllWhereOrdered<R extends ActiveRecord<R>>
          Delegate for Table.selectAllWhereOrdered(String, String, Object...)
 class SelectAvg<R extends ActiveRecord<R>,T>
          Delegate for selectAvg methods in Table.
 class SelectCount<R extends ActiveRecord<R>,T>
          Delegate for Table.selectCount().
 class SelectCustom<R extends ActiveRecord<R>>
          Delegate for Table.selectCustom(String, Object...).
 class SelectMax<R extends ActiveRecord<R>,T>
          Delegate for selectMax methods in Table.
 class SelectMin<R extends ActiveRecord<R>,T>
          Delegate for selectMin methods in Table.
 class SelectSum<R extends ActiveRecord<R>,T>
          Delegate for selectSum methods in Table.
 class SelectWhere<R extends ActiveRecord<R>>
          Delegate for Table.selectWhere(String, Object...).
 class Update<R extends ActiveRecord<R>>
          Delegate for Table.update(Object)
 class UpdateAll<R extends ActiveRecord<R>>
          Delegate for Table.updateAll(Collection).
 class UpdateAllBatch<R extends ActiveRecord<R>>
          Delegate for Table.updateAllBatch(Collection).