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