public enum SchemaUpdateStrategy extends Enum<SchemaUpdateStrategy>
Enum Constant and Description |
---|
DO_NOTHING
Do nothing.
|
DROP_CREATE
Performs the schema drop and create.
|
UPDATE
Performs the schema update.
|
VALIDATE
Performs the schema validation.
|
Modifier and Type | Field and Description |
---|---|
static String |
EXECUTE_KEY
Key to be used in model upload properties to specify the execute flag.
|
static String |
KEY
Key to be used in model upload properties to specify the strategy.
|
Modifier and Type | Method and Description |
---|---|
static SchemaUpdateStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaUpdateStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaUpdateStrategy DO_NOTHING
public static final SchemaUpdateStrategy UPDATE
public static final SchemaUpdateStrategy DROP_CREATE
public static final SchemaUpdateStrategy VALIDATE
public static final String KEY
public static final String EXECUTE_KEY
public static SchemaUpdateStrategy[] values()
for (SchemaUpdateStrategy c : SchemaUpdateStrategy.values()) System.out.println(c);
public static SchemaUpdateStrategy 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.