ActiveTable
.See: Description
Class | Description |
---|---|
ActiveLazySelector<R extends ActiveRecord<? super R>> |
Performs lazy loading of active records.
|
ActiveOperation<R extends ActiveRecord<? super R>,T> |
Template for executing
ActiveOperation.operate() on an active table. |
Delete<R extends ActiveRecord<? super R>> |
Delegate for
Table.delete(Object) |
DeleteAll<R extends ActiveRecord<? super R>> |
Delegate for
Table.deleteAll(Collection) and Table.deleteAll() . |
DeleteAllBatch<R extends ActiveRecord<? super R>> |
Delegate for
Table.deleteAllBatch(Collection) . |
DeleteBatch<R extends ActiveRecord<? super R>> |
Delegate for
Table.deleteBatch(Object) |
Insert<R extends ActiveRecord<? super R>> |
Delegate for
Table.insert(Object) |
InsertAll<R extends ActiveRecord<? super R>> |
Delegate for
Table.insertAll(Collection) . |
InsertAllBatch<R extends ActiveRecord<? super R>> |
Delegate for
Table.insertAllBatch(Collection) . |
InsertBatch<R extends ActiveRecord<? super R>> |
Delegate for
Table.insertBatch(Object) . |
OperationDatabase |
Database for one transaction within an ActiveOperation . |
OperationTable<R extends ActiveRecord> |
A
Table for use by one transaction within an ActiveOperation . |
OperationTransaction |
A
Transaction for use by classes in org.sormula.active.operation package. |
Save<R extends ActiveRecord<? super R>> |
Delegate for
Table.save(Object) |
SaveAll<R extends ActiveRecord<? super R>> |
Delegate for
Table.saveAll(Collection) . |
SaveAllBatch<R extends ActiveRecord<? super R>> |
Delegate for
Table.saveAllBatch(Collection) . |
SaveBatch<R extends ActiveRecord<? super R>> |
Delegate for
Table.saveBatch(Object) |
Select<R extends ActiveRecord<? super R>> |
Delegate for
Table.select(Object...) . |
SelectAll<R extends ActiveRecord<? super R>> |
Delegate for
Table.selectAll() . |
SelectAllCustom<R extends ActiveRecord<? super R>> |
Delegate for
Table.selectAllCustom(String, Object...) . |
SelectAllWhere<R extends ActiveRecord<? super R>> |
Delegate for
Table.selectAllWhere(String, Object...) . |
SelectAllWhereOrdered<R extends ActiveRecord<? super R>> | |
SelectAvg<R extends ActiveRecord<? super R>,T> |
Delegate for selectAvg methods in
Table . |
SelectCount<R extends ActiveRecord<? super R>,T> |
Delegate for
Table.selectCount() . |
SelectCustom<R extends ActiveRecord<? super R>> |
Delegate for
Table.selectCustom(String, Object...) . |
SelectMax<R extends ActiveRecord<? super R>,T> |
Delegate for selectMax methods in
Table . |
SelectMin<R extends ActiveRecord<? super R>,T> |
Delegate for selectMin methods in
Table . |
SelectSum<R extends ActiveRecord<? super R>,T> |
Delegate for selectSum methods in
Table . |
SelectWhere<R extends ActiveRecord<? super R>> |
Delegate for
Table.selectWhere(String, Object...) . |
Update<R extends ActiveRecord<? super R>> |
Delegate for
Table.update(Object) |
UpdateAll<R extends ActiveRecord<? super R>> |
Delegate for
Table.updateAll(Collection) . |
UpdateAllBatch<R extends ActiveRecord<? super R>> |
Delegate for
Table.updateAllBatch(Collection) . |
UpdateBatch<R extends ActiveRecord<? super R>> |
Delegate for
Table.updateBatch(Object) |
ActiveTable
. Classes
in this package are intended to be used only by ActiveTable
.
See ActiveRecordExample and org.sormula.tests.active packages in this project for examples.