public enum SqlForeignKeyActions extends java.lang.Enum<SqlForeignKeyActions>
| Enum Constant and Description |
|---|
CASCADE |
NO_ACTION |
RESTRICT |
SET_DEFAULT |
SET_NULL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getSqlName() |
java.lang.String |
toString() |
static SqlForeignKeyActions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlForeignKeyActions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlForeignKeyActions NO_ACTION
public static final SqlForeignKeyActions RESTRICT
public static final SqlForeignKeyActions SET_NULL
public static final SqlForeignKeyActions SET_DEFAULT
public static final SqlForeignKeyActions CASCADE
public static SqlForeignKeyActions[] values()
for (SqlForeignKeyActions c : SqlForeignKeyActions.values()) System.out.println(c);
public static SqlForeignKeyActions valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getSqlName()
public java.lang.String toString()
toString in class java.lang.Enum<SqlForeignKeyActions>