public enum ConfigurationMode extends java.lang.Enum<ConfigurationMode>
DatasetManagerConfiguration
should be validated/created
Note that while validating a dataset, only the validity of the key type will be checked. The rest of the
configuration is not checked for compatibility.Enum Constant and Description |
---|
AUTO
Create if any configured dataset doesn't exist or validate if it exists
|
CREATE
Create all configured datasets
|
VALIDATE
Validate all configured datasets
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationMode VALIDATE
public static final ConfigurationMode CREATE
public static final ConfigurationMode AUTO
public static ConfigurationMode[] values()
for (ConfigurationMode c : ConfigurationMode.values()) System.out.println(c);
public static ConfigurationMode 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