public static enum ScriptSplitter.State extends java.lang.Enum<ScriptSplitter.State>
| Enum Constant and Description |
|---|
COMMENT
comment
|
DDL
DDL statement
|
GAP
gap between DDL statements
|
IGNORE
Ignored line
|
INVALID_COMMENT
Invalid comment
|
| Modifier and Type | Method and Description |
|---|---|
static ScriptSplitter.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScriptSplitter.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptSplitter.State GAP
public static final ScriptSplitter.State COMMENT
public static final ScriptSplitter.State DDL
public static final ScriptSplitter.State IGNORE
public static final ScriptSplitter.State INVALID_COMMENT
public static ScriptSplitter.State[] values()
for (ScriptSplitter.State c : ScriptSplitter.State.values()) System.out.println(c);
public static ScriptSplitter.State 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