public static enum Configuration.Option extends Enum<Configuration.Option>
| Enum Constant and Description |
|---|
CONFIGURATION_CHANGES |
CONFIGURATION_CHANGES_VERBOSE |
PRESERVE_CERTIFICATE |
PRESERVE_VENDOR_DATA |
REGISTER |
| Modifier and Type | Method and Description |
|---|---|
static Configuration.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.Option REGISTER
public static final Configuration.Option PRESERVE_VENDOR_DATA
public static final Configuration.Option PRESERVE_CERTIFICATE
public static final Configuration.Option CONFIGURATION_CHANGES
public static final Configuration.Option CONFIGURATION_CHANGES_VERBOSE
public static Configuration.Option[] values()
for (Configuration.Option c : Configuration.Option.values()) System.out.println(c);
public static Configuration.Option 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 © 2021. All rights reserved.