Uses of Class
org.h2.constraint.Constraint.Type
-
Packages that use Constraint.Type Package Description org.h2.constraint Database constraints such as check constraints, unique constraints, and referential constraints.org.h2.table Classes related to a table and table meta data. -
-
Uses of Constraint.Type in org.h2.constraint
Methods in org.h2.constraint that return Constraint.Type Modifier and Type Method Description abstract Constraint.Type
Constraint. getConstraintType()
The constraint type nameConstraint.Type
ConstraintCheck. getConstraintType()
Constraint.Type
ConstraintDomain. getConstraintType()
Constraint.Type
ConstraintReferential. getConstraintType()
Constraint.Type
ConstraintUnique. getConstraintType()
static Constraint.Type
Constraint.Type. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Constraint.Type[]
Constraint.Type. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Constraint.Type in org.h2.table
Methods in org.h2.table with parameters of type Constraint.Type Modifier and Type Method Description private void
InformationSchemaTable. 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)
private void
InformationSchemaTable. tableConstraints(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Constraint.Type constraintType, Table table, java.lang.String tableName)
-