Uses of Class
org.h2.engine.DbObjectBase

Packages that use DbObjectBase
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.table Classes related to a table and table meta data. 
 

Uses of DbObjectBase in org.h2.constraint
 

Subclasses of DbObjectBase 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 DbObjectBase in org.h2.engine
 

Subclasses of DbObjectBase in org.h2.engine
 class Comment
          Represents a database object comment.
 class FunctionAlias
          Represents a user-defined function, or alias.
 class Right
          An access right.
 class RightOwner
          A right owner (sometimes called principal).
 class Role
          Represents a role.
 class Setting
          A persistent database setting.
 class User
          Represents a user object.
 class UserAggregate
          Represents a user-defined aggregate function.
 class UserDataType
          Represents a domain (user-defined data type).
 

Uses of DbObjectBase in org.h2.index
 

Subclasses of DbObjectBase in org.h2.index
 class BaseIndex
          Most index implementations extend the base 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 DbObjectBase in org.h2.schema
 

Subclasses of DbObjectBase in org.h2.schema
 class Constant
          A user-defined constant as created by the SQL statement CREATE CONSTANT
 class Schema
          A schema as created by the SQL statement CREATE SCHEMA
 class SchemaObjectBase
          The base class for classes implementing SchemaObject.
 class Sequence
          A sequence is created using the statement CREATE SEQUENCE
 class TriggerObject
          A trigger is created using the statement CREATE TRIGGER
 

Uses of DbObjectBase in org.h2.table
 

Subclasses of DbObjectBase 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 RegularTable
          Most tables are an instance of this class.
 class Table
          This is the base class for most tables.
 class TableBase
          The base class of a regular table, or a user defined table.
 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.