Uses of Class
org.h2.constraint.Constraint
-
Packages that use Constraint Package Description 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.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.command.ddl
Methods in org.h2.command.ddl with parameters of type Constraint Modifier and Type Method Description private voidAlterTableAddConstraint. addConstraintToTable(Database db, Table table, Constraint constraint) -
Uses of Constraint in org.h2.constraint
Subclasses of Constraint in org.h2.constraint Modifier and Type Class Description classConstraintCheckA check constraint.classConstraintDomainA domain constraint.classConstraintReferentialA referential constraint.classConstraintUniqueA unique constraint.Methods in org.h2.constraint with parameters of type Constraint Modifier and Type Method Description intConstraint. compareTo(Constraint other) -
Uses of Constraint in org.h2.engine
Fields in org.h2.engine with type parameters of type Constraint Modifier and Type Field Description private java.util.HashMap<java.lang.String,Constraint>SessionLocal. localTempTableConstraintsMethods in org.h2.engine that return Constraint Modifier and Type Method Description ConstraintSessionLocal. 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 Modifier and Type Method Description java.util.HashMap<java.lang.String,Constraint>SessionLocal. 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 Modifier and Type Method Description voidSessionLocal. addLocalTempTableConstraint(Constraint constraint)Add a local temporary constraint to this session.(package private) voidSessionLocal. removeLocalTempTableConstraint(Constraint constraint)Drop and remove the given local temporary constraint from this session. -
Uses of Constraint in org.h2.schema
Fields in org.h2.schema with type parameters of type Constraint Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<java.lang.String,Constraint>Schema. constraintsMethods in org.h2.schema that return Constraint Modifier and Type Method Description ConstraintSchema. findConstraint(SessionLocal session, java.lang.String name)Try to find a constraint with this name.ConstraintSchema. getConstraint(java.lang.String name)Get the constraint with the given name.Methods in org.h2.schema that return types with arguments of type Constraint Modifier and Type Method Description java.util.Collection<Constraint>Schema. getAllConstraints()Methods in org.h2.schema with parameters of type Constraint Modifier and Type Method Description voidDomain. removeConstraint(Constraint constraint)Remove the given constraint from the list. -
Uses of Constraint in org.h2.table
Fields in org.h2.table with type parameters of type Constraint Modifier and Type Field Description private java.util.ArrayList<Constraint>Table. constraintsMethods in org.h2.table that return types with arguments of type Constraint Modifier and Type Method Description java.util.ArrayList<Constraint>Table. getConstraints()Methods in org.h2.table with parameters of type Constraint Modifier and Type Method Description voidTable. addConstraint(Constraint constraint)Add a constraint to the table.private voidInformationSchemaTable. addConstraintColumnUsage(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Column column)private voidInformationSchemaTableLegacy. addConstraintColumnUsage(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Column column)private voidInformationSchemaTable. checkConstraints(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, java.lang.String constraintName)private voidInformationSchemaTable. constraintColumnUsage(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint)private voidInformationSchemaTable. keyColumnUsage(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Constraint.Type constraintType, IndexColumn[] indexColumns, Table table, java.lang.String tableName)voidTable. removeConstraint(Constraint constraint)Remove the given constraint from the list.private voidInformationSchemaTable. tableConstraints(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Constraint.Type constraintType, Table table, java.lang.String tableName)
-