public static enum DBSchemaUtils.ActionType extends Enum<DBSchemaUtils.ActionType>
IDatabaseSchemaUpdateListener#onAction(ActionType, ObjectType, PhaseType, java.sql.Connection, String, java.util.Dictionary, IDatabaseSchemaDriver, Exception).| Enum Constant and Description |
|---|
CHECK
schema processor checks the existence or validity of an object (table,column, key ...)
|
UPDATE
schema processor has to update an object (table,column, key ...)
|
| Modifier and Type | Method and Description |
|---|---|
static DBSchemaUtils.ActionType |
findByInteger(int value)
search action type enum represents by
value |
static DBSchemaUtils.ActionType |
findByName(String name)
search action type enum represents by
name |
static Set<DBSchemaUtils.ActionType> |
getAll()
getter for all action types
|
static DBSchemaUtils.ActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBSchemaUtils.ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBSchemaUtils.ActionType CHECK
public static final DBSchemaUtils.ActionType UPDATE
public static DBSchemaUtils.ActionType[] values()
for (DBSchemaUtils.ActionType c : DBSchemaUtils.ActionType.values()) System.out.println(c);
public static DBSchemaUtils.ActionType 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 nullpublic static Set<DBSchemaUtils.ActionType> getAll()
public static DBSchemaUtils.ActionType findByInteger(int value)
valuevalue - integer value of action typevaluepublic static DBSchemaUtils.ActionType findByName(String name)
namename - of action typenameCopyright © 2020. All rights reserved.