Uses of Enum
org.h2.constraint.ConstraintActionType
Packages that use ConstraintActionType
Package
Description
Contains DDL (data definition language) and related SQL statements.
Database constraints such as check constraints, unique constraints, and referential constraints.
-
Uses of ConstraintActionType in org.h2.command.ddl
Methods in org.h2.command.ddl with parameters of type ConstraintActionTypeModifier and TypeMethodDescriptionvoidAlterTableAddConstraint.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
Subclasses with type arguments of type ConstraintActionType in org.h2.constraintMethods in org.h2.constraint that return ConstraintActionTypeModifier and TypeMethodDescriptionConstraintReferential.getDeleteAction()ConstraintReferential.getUpdateAction()static ConstraintActionTypeReturns 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 ConstraintActionTypeModifier and TypeMethodDescriptionvoidConstraintReferential.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.