Uses of Class
org.h2.constraint.ConstraintActionType
-
Packages that use ConstraintActionType Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.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.jdbc.meta Implementation of the JDBC database metadata API (package java.sql).org.h2.table Classes related to a table and table meta data. -
-
Uses of ConstraintActionType in org.h2.command
Methods in org.h2.command that return ConstraintActionType Modifier and Type Method Description private ConstraintActionTypeParser. parseAction()private ConstraintActionTypeParser. parseCascadeOrRestrict() -
Uses of ConstraintActionType in org.h2.command.ddl
Fields in org.h2.command.ddl declared as ConstraintActionType Modifier and Type Field Description private ConstraintActionTypeAlterTableAddConstraint. deleteActionprivate ConstraintActionTypeAlterTableDropConstraint. dropActionprivate ConstraintActionTypeDropDomain. dropActionprivate ConstraintActionTypeDropSchema. dropActionprivate ConstraintActionTypeDropTable. dropActionprivate ConstraintActionTypeDropView. dropActionprivate ConstraintActionTypeAlterTableAddConstraint. updateActionMethods in org.h2.command.ddl with parameters of type ConstraintActionType Modifier and Type Method Description voidAlterTableAddConstraint. setDeleteAction(ConstraintActionType action)voidAlterTableDropConstraint. setDropAction(ConstraintActionType dropAction)voidDropDomain. setDropAction(ConstraintActionType dropAction)voidDropSchema. setDropAction(ConstraintActionType dropAction)voidDropTable. setDropAction(ConstraintActionType dropAction)voidDropView. setDropAction(ConstraintActionType dropAction)voidAlterTableAddConstraint. setUpdateAction(ConstraintActionType action) -
Uses of ConstraintActionType in org.h2.constraint
Fields in org.h2.constraint declared as ConstraintActionType Modifier and Type Field Description private ConstraintActionTypeConstraintReferential. deleteActionprivate ConstraintActionTypeConstraintReferential. updateActionMethods in org.h2.constraint that return ConstraintActionType Modifier and Type Method Description ConstraintActionTypeConstraintReferential. getDeleteAction()ConstraintActionTypeConstraintReferential. getUpdateAction()static ConstraintActionTypeConstraintActionType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ConstraintActionType[]ConstraintActionType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.h2.constraint with parameters of type ConstraintActionType Modifier and Type Method Description private PreparedConstraintReferential. prepare(SessionLocal session, java.lang.String sql, ConstraintActionType action)voidConstraintReferential. setDeleteAction(ConstraintActionType action)Set the action to apply (restrict, cascade,...) on a delete.voidConstraintReferential. setUpdateAction(ConstraintActionType action)Set the action to apply (restrict, cascade,...) on an update. -
Uses of ConstraintActionType in org.h2.jdbc.meta
Methods in org.h2.jdbc.meta with parameters of type ConstraintActionType Modifier and Type Method Description private static ValueSmallintDatabaseMetaLocal. getRefAction(ConstraintActionType action) -
Uses of ConstraintActionType in org.h2.table
Methods in org.h2.table with parameters of type ConstraintActionType Modifier and Type Method Description private static shortInformationSchemaTableLegacy. getRefAction(ConstraintActionType action)
-