public enum SchemaGenerate extends java.lang.Enum<SchemaGenerate>
Enum Constant and Description |
---|
CREATE
Create the schema if it doesn't exist.
|
CREATE_DROP
Drop and recreate the schema.
|
NONE
Do nothing.
|
Modifier and Type | Method and Description |
---|---|
static SchemaGenerate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SchemaGenerate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaGenerate CREATE
public static final SchemaGenerate CREATE_DROP
public static final SchemaGenerate NONE
public static SchemaGenerate[] values()
for (SchemaGenerate c : SchemaGenerate.values()) System.out.println(c);
public static SchemaGenerate 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