public static enum Constraint.PROPERTY extends Enum<Constraint.PROPERTY>
| Enum Constant and Description |
|---|
constraintName
Name of the constraint definition
|
constraintType
Type of constraint definition:
C (check constraint on a table)
P (primary key)
U (unique key)
R (referential integrity)
V (with check option, on a view)
O (with read only, on a view)
|
deleteRule
Delete rule for a referential constraint (CASCADE or NO
ACTION)
|
indexName
Name of the index (only shown for unique and primary-key
constraints)
|
indexOwner
Name of the user owning the index
|
owner
Owner of the constraint definition
|
refConstraintName
Name of the unique constraint definition for referenced
table
|
refOwner
Owner of table referred to in a referential constraint
|
searchCondition
Text of search condition for a check constraint
|
table
The reference to the owning table
|
| Modifier and Type | Method and Description |
|---|---|
static Constraint.PROPERTY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constraint.PROPERTY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constraint.PROPERTY owner
public static final Constraint.PROPERTY table
public static final Constraint.PROPERTY constraintName
public static final Constraint.PROPERTY constraintType
public static final Constraint.PROPERTY searchCondition
public static final Constraint.PROPERTY refOwner
public static final Constraint.PROPERTY refConstraintName
public static final Constraint.PROPERTY deleteRule
public static final Constraint.PROPERTY indexOwner
public static final Constraint.PROPERTY indexName
public static Constraint.PROPERTY[] values()
for (Constraint.PROPERTY c : Constraint.PROPERTY.values()) System.out.println(c);
public static Constraint.PROPERTY valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.