Package org.apache.empire.db
Enum DBRelation.DBCascadeAction
- All Implemented Interfaces:
Serializable,Comparable<DBRelation.DBCascadeAction>,java.lang.constant.Constable
- Enclosing class:
- DBRelation
DBCascadeAction enum
This enum specifies options for a relation when deleting records
(see DBRelation.setOnDeleteAction)
- NONE: No Action is performed and the operation will fail if depending records exist.
- CASCADE: Delete (or update) any depending records. This action will be performed by the database and thus
the option "ON DELETE CASCADE" is added to the DDL generated for the relation.
- CASCADE_RECORDS: This option allows to handle the cascade in code. All depending records will be selected
by the framework and for each record DBRowSet.deleteRecord() will be called.
The option "ON DELETE CASCADE" will NOT be added to the DDL generated for the relation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic DBRelation.DBCascadeActionReturns the enum constant of this type with the specified name.static DBRelation.DBCascadeAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
-
CASCADE
-
CASCADE_RECORDS
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-