Uses of Class
org.h2.table.RegularTable

Packages that use RegularTable
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
 

Uses of RegularTable in org.h2.index
 

Constructors in org.h2.index with parameters of type RegularTable
HashIndex(RegularTable table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType)
           
MultiVersionIndex(Index base, RegularTable table)
           
NonUniqueHashCursor(Session session, RegularTable tableData, java.util.ArrayList<java.lang.Long> positions)
           
NonUniqueHashIndex(RegularTable table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType)
           
PageBtreeIndex(RegularTable table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType, boolean create, Session session)
           
PageDataIndex(RegularTable table, int id, IndexColumn[] columns, IndexType indexType, boolean create, Session session)
           
PageDelegateIndex(RegularTable table, int id, java.lang.String name, IndexType indexType, PageDataIndex mainIndex, boolean create, Session session)
           
ScanIndex(RegularTable table, int id, IndexColumn[] columns, IndexType indexType)
           
TreeIndex(RegularTable table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType)