public static enum SchemaTool.Mode extends Enum<SchemaTool.Mode>
Enum Constant and Description |
---|
CREATE |
CREATE_DATABASE |
DATABASE_INFO |
DELETE |
DELETE_CREATE |
DELETE_DATABASE |
SCHEMA_INFO |
VALIDATE |
Modifier and Type | Method and Description |
---|---|
static SchemaTool.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaTool.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaTool.Mode CREATE_DATABASE
public static final SchemaTool.Mode DELETE_DATABASE
public static final SchemaTool.Mode CREATE
public static final SchemaTool.Mode DELETE
public static final SchemaTool.Mode DELETE_CREATE
public static final SchemaTool.Mode VALIDATE
public static final SchemaTool.Mode DATABASE_INFO
public static final SchemaTool.Mode SCHEMA_INFO
public static SchemaTool.Mode[] values()
for (SchemaTool.Mode c : SchemaTool.Mode.values()) System.out.println(c);
public static SchemaTool.Mode 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 © 2019. All rights reserved.