Uses of Class
org.sormula.active.ActiveRecord

Packages that use ActiveRecord
org.sormula.active An implementation of the active record pattern built on top of sormula. 
org.sormula.active.operation Thread-safe and transaction-compliant database operations used by ActiveTable
 

Uses of ActiveRecord in org.sormula.active
 

Classes in org.sormula.active with type parameters of type ActiveRecord
 class ActiveRecord<R extends ActiveRecord<R>>
          Base class for active records.
 class ActiveTable<R extends ActiveRecord<R>>
          Performs all database operations for ActiveRecord objects.
 

Methods in org.sormula.active with type parameters of type ActiveRecord
static
<R extends ActiveRecord<R>>
ActiveTable<R>
ActiveRecord.table(java.lang.Class<R> recordClass)
          Creates a table that can be used to for records of type recordClass for the default active database.
 

Uses of ActiveRecord in org.sormula.active.operation
 

Classes in org.sormula.active.operation with type parameters of type ActiveRecord
 class ActiveLazySelector<R extends ActiveRecord<R>>
          Performs lazy loading of active records.
 class ActiveOperation<R extends ActiveRecord<R>,T>
          Template for executing ActiveOperation.operate() on an active table.
 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 OperationTable<R extends ActiveRecord>
          A Table for use by one transaction within an ActiveOperation.
 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).