public static enum DBCreator.EOperation extends Enum<DBCreator.EOperation>
| Enum Constant and Description |
|---|
E_CREATE |
E_MIGRATE |
E_REMOVE |
E_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static DBCreator.EOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBCreator.EOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBCreator.EOperation E_CREATE
public static final DBCreator.EOperation E_REMOVE
public static final DBCreator.EOperation E_UPDATE
public static final DBCreator.EOperation E_MIGRATE
public static DBCreator.EOperation[] values()
for (DBCreator.EOperation c : DBCreator.EOperation.values()) System.out.println(c);
public static DBCreator.EOperation 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 © 2016 as-development.net. All rights reserved.