|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SchemaObjectBase | |
---|---|
org.h2.constraint | Database constraints such as check constraints, unique constraints, and referential constraints. |
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.table | Classes related to a table and table meta data. |
Uses of SchemaObjectBase in org.h2.constraint |
---|
Subclasses of SchemaObjectBase in org.h2.constraint | |
---|---|
class |
Constraint
The base class for constraint checking. |
class |
ConstraintCheck
A check constraint. |
class |
ConstraintReferential
A referential constraint. |
class |
ConstraintUnique
A unique constraint. |
Uses of SchemaObjectBase in org.h2.index |
---|
Subclasses of SchemaObjectBase in org.h2.index | |
---|---|
class |
BaseHashIndex
Base of hash indexes. |
class |
BaseIndex
Most index implementations extend the base index. |
class |
BtreeIndex
This is the most common type of index, a b-tree index. |
class |
FunctionIndex
An index for a function that returns a result set. |
class |
HashIndex
An unique index based on an in-memory hash map. |
class |
LinkedIndex
A linked index is a index for a linked (remote) table. |
class |
MetaIndex
The index implementation for meta data tables. |
class |
NonUniqueHashIndex
A non-unique index based on an in-memory hash map. |
class |
PageBtreeIndex
This is the most common type of index, a b tree index. |
class |
PageDataIndex
The scan index allows to access a row by key. |
class |
PageDelegateIndex
An index that delegates indexing to the page data index. |
class |
PageIndex
A page store index. |
class |
RangeIndex
An index for the SYSTEM_RANGE table. |
class |
ScanIndex
The scan index is not really an 'index' in the strict sense, because it can not be used for direct lookup. |
class |
TreeIndex
The tree index is an in-memory index based on a binary AVL trees. |
class |
ViewIndex
This object represents a virtual index for a query. |
Uses of SchemaObjectBase in org.h2.schema |
---|
Subclasses of SchemaObjectBase in org.h2.schema | |
---|---|
class |
Constant
A user-defined constant as created by the SQL statement CREATE CONSTANT |
class |
Sequence
A sequence is created using the statement CREATE SEQUENCE |
class |
TriggerObject
A trigger is created using the statement CREATE TRIGGER |
Uses of SchemaObjectBase in org.h2.table |
---|
Subclasses of SchemaObjectBase in org.h2.table | |
---|---|
class |
FunctionTable
A table backed by a system or user-defined function that returns a result set. |
class |
MetaTable
This class is responsible to build the database meta data pseudo tables. |
class |
RangeTable
The table SYSTEM_RANGE is a virtual table that generates incrementing numbers with a given start end end point. |
class |
Table
This is the base class for most tables. |
class |
TableData
Most tables are an instance of this class. |
class |
TableLink
A linked table contains connection information for a table accessible by JDBC. |
class |
TableView
A view is a virtual table that is defined by a query. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |