Uses of Class
org.h2.constraint.Constraint

Packages that use Constraint
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.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 Constraint in org.h2.constraint
 

Subclasses of Constraint in org.h2.constraint
 class ConstraintCheck
          A check constraint.
 class ConstraintReferential
          A referential constraint.
 class ConstraintUnique
          A unique constraint.
 

Methods in org.h2.constraint with parameters of type Constraint
 int Constraint.compareTo(Constraint other)
           
 

Uses of Constraint in org.h2.engine
 

Methods in org.h2.engine that return Constraint
 Constraint Session.findLocalTempTableConstraint(java.lang.String name)
          Get the local temporary constraint if one exists with that name, or null if not.
 

Methods in org.h2.engine that return types with arguments of type Constraint
 java.util.HashMap<java.lang.String,Constraint> Session.getLocalTempTableConstraints()
          Get the map of constraints for all constraints on local, temporary tables, if any.
 

Methods in org.h2.engine with parameters of type Constraint
 void Session.addLocalTempTableConstraint(Constraint constraint)
          Add a local temporary constraint to this session.
 void Session.removeLocalTempTableConstraint(Constraint constraint)
          Drop and remove the given local temporary constraint from this session.
 

Uses of Constraint in org.h2.schema
 

Methods in org.h2.schema that return Constraint
 Constraint Schema.findConstraint(Session session, java.lang.String name)
          Try to find a constraint with this name.
 Constraint Schema.getConstraint(java.lang.String name)
          Get the constraint with the given name.
 

Uses of Constraint in org.h2.table
 

Methods in org.h2.table that return types with arguments of type Constraint
 ObjectArray<Constraint> Table.getConstraints()
           
 

Methods in org.h2.table with parameters of type Constraint
 void Table.addConstraint(Constraint constraint)
          Add a constraint to the table.
 void Table.removeConstraint(Constraint constraint)
          Remove the given constraint from the list.