public enum FKChangeRule extends Enum<FKChangeRule>
| Enum Constant and Description |
|---|
CASCADE |
NO_ACTION |
SET_DEFAULT |
SET_NULL |
| Modifier and Type | Method and Description |
|---|---|
static FKChangeRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FKChangeRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FKChangeRule NO_ACTION
public static final FKChangeRule CASCADE
public static final FKChangeRule SET_NULL
public static final FKChangeRule SET_DEFAULT
public static FKChangeRule[] values()
for (FKChangeRule c : FKChangeRule.values()) System.out.println(c);
public static FKChangeRule 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 © 2006–2014 Volker Bergmann. All rights reserved.