java.io.Serializable
, java.lang.Comparable<JarSettings.CreateTables>
, java.lang.constant.Constable
public static enum JarSettings.CreateTables extends java.lang.Enum<JarSettings.CreateTables>
Enum Constant | Description |
---|---|
ALTER_OR_CREATE |
|
CREATE_ONLY |
|
DISABLED |
|
DROP_AND_CREATE |
|
DROP_AND_CREATE_ALWAYS |
|
UNSPECIFIED |
Modifier and Type | Method | Description |
---|---|---|
static JarSettings.CreateTables |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static JarSettings.CreateTables[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JarSettings.CreateTables CREATE_ONLY
public static final JarSettings.CreateTables DISABLED
public static final JarSettings.CreateTables DROP_AND_CREATE
public static final JarSettings.CreateTables DROP_AND_CREATE_ALWAYS
public static final JarSettings.CreateTables ALTER_OR_CREATE
public static final JarSettings.CreateTables UNSPECIFIED
public static JarSettings.CreateTables[] values()
for (JarSettings.CreateTables c : JarSettings.CreateTables.values()) System.out.println(c);
public static JarSettings.CreateTables 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