public enum EKeyReferenceType extends Enum<EKeyReferenceType>
| Enum Constant and Description | 
|---|
cascade  | 
no_action  | 
restrict  | 
set_default  | 
set_null  | 
| Modifier and Type | Method and Description | 
|---|---|
static EKeyReferenceType | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static EKeyReferenceType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final EKeyReferenceType no_action
public static final EKeyReferenceType restrict
public static final EKeyReferenceType cascade
public static final EKeyReferenceType set_null
public static final EKeyReferenceType set_default
public static EKeyReferenceType[] values()
for (EKeyReferenceType c : EKeyReferenceType.values()) System.out.println(c);
public static EKeyReferenceType 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 © 2019. All rights reserved.