public static enum DBEnvironment.DBOperation extends java.lang.Enum<DBEnvironment.DBOperation>
Enum Constant and Description |
---|
INSERT
INSERT is the DBOperation for inserting the new details or in other words any addition of new details.
|
INVALIDATE
INVALIDATE is the DBOperation wherein already existed tables or columns can be invalidated so that they will not be saved under that particular Environment.
|
SKIP
SKIP is the DBOperation wherein none of the operations are performed upon them.
|
UPDATE
UPDATE is the DBOperation for updating the existing details or in other words any modifications i.e addition or deletion to the existing details.
|
VALIDATE
VALIDATE is the DBOperation wherein only the validated tables or columns will be saved for that particular environment.
|
Modifier and Type | Method and Description |
---|---|
static DBEnvironment.DBOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBEnvironment.DBOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBEnvironment.DBOperation UPDATE
public static final DBEnvironment.DBOperation INSERT
public static final DBEnvironment.DBOperation VALIDATE
public static final DBEnvironment.DBOperation INVALIDATE
public static final DBEnvironment.DBOperation SKIP
public static DBEnvironment.DBOperation[] values()
for (DBEnvironment.DBOperation c : DBEnvironment.DBOperation.values()) System.out.println(c);
public static DBEnvironment.DBOperation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null