Uses of Package
org.h2.index

Packages that use org.h2.index
org.h2.command.ddl Contains DDL (data definition language) and related SQL statements. 
org.h2.constraint Database constraints such as check constraints, unique constraints, and referential constraints. 
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants). 
org.h2.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa. 
org.h2.table Classes related to a table and table meta data. 
 

Classes in org.h2.index used by org.h2.command.ddl
Index
          An index.
 

Classes in org.h2.index used by org.h2.constraint
Index
          An index.
 

Classes in org.h2.index used by org.h2.engine
Index
          An index.
 

Classes in org.h2.index used by org.h2.index
BaseIndex
          Most index implementations extend the base index.
Cursor
          A cursor is a helper object to iterate through an index.
HashIndex
          An unique index based on an in-memory hash map.
Index
          An index.
IndexCondition
          A index condition object is made for each condition that can potentially use an index.
IndexType
          Represents information about the properties of an index
PageBtree
          A page that contains index data.
PageBtreeIndex
          This is the most common type of index, a b tree index.
PageDataIndex
          The scan index allows to access a row by key.
PageIndex
          A page store index.
ViewIndex
          This object represents a virtual index for a query.
 

Classes in org.h2.index used by org.h2.schema
Index
          An index.
 

Classes in org.h2.index used by org.h2.store
Index
          An index.
PageIndex
          A page store index.
 

Classes in org.h2.index used by org.h2.table
Index
          An index.
IndexCondition
          A index condition object is made for each condition that can potentially use an index.
IndexType
          Represents information about the properties of an index