Uses of Interface
org.axiondb.RowCollection

Packages that use RowCollection
org.axiondb Core interfaces, identifiers, and exceptions. 
org.axiondb.engine Core database machinery. 
org.axiondb.engine.rowcollection   
org.axiondb.engine.tables   
 

Uses of RowCollection in org.axiondb
 

Methods in org.axiondb with parameters of type RowCollection
 void Table.applyInserts(RowCollection rows)
          Insert the given rows into this table and any associated indices.
 void Table.applyUpdates(RowCollection rows)
          Update the given rows in this table and any associated indices.
 

Uses of RowCollection in org.axiondb.engine
 

Methods in org.axiondb.engine with parameters of type RowCollection
 void TransactableTableImpl.applyInserts(RowCollection rows)
           
 void TransactableTableImpl.applyUpdates(RowCollection rows)
           
 

Uses of RowCollection in org.axiondb.engine.rowcollection
 

Classes in org.axiondb.engine.rowcollection that implement RowCollection
 class RowCollections
          An Utility for Row Collections.
 

Methods in org.axiondb.engine.rowcollection that return RowCollection
 RowCollection IntRowMap.rowValues()
          Returns a RowCollectionview of the values contained in this IntRowMap.
static RowCollection RowCollections.singletonList(Row row)
           
 

Uses of RowCollection in org.axiondb.engine.tables
 

Methods in org.axiondb.engine.tables with parameters of type RowCollection
abstract  void BaseTable.applyInserts(RowCollection rows)
           
 void ExternalAxionDBTable.applyInserts(RowCollection rows)
           
 void MemoryTable.applyInserts(RowCollection rows)
           
 void TableView.applyInserts(RowCollection rows)
           
 void BaseDiskTable.applyInserts(RowCollection rows)
           
 void ExternalDatabaseTable.applyInserts(RowCollection rows)
           
protected  void BaseTable.applyInsertsToIndices(RowCollection rows)
           
abstract  void BaseTable.applyUpdates(RowCollection rows)
           
 void ExternalAxionDBTable.applyUpdates(RowCollection rows)
           
 void MemoryTable.applyUpdates(RowCollection rows)
           
 void TableView.applyUpdates(RowCollection rows)
           
 void BaseDiskTable.applyUpdates(RowCollection rows)
           
 void ExternalDatabaseTable.applyUpdates(RowCollection rows)
           
protected  void BaseTable.applyUpdatesToIndices(RowCollection rows)