public static enum ConfigService.ConfigurationType extends Enum<ConfigService.ConfigurationType>
| Enum Constant and Description |
|---|
DATABASE
Use binary database files
|
XML
Use XML configuration files
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigService.ConfigurationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigService.ConfigurationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigService.ConfigurationType XML
public static final ConfigService.ConfigurationType DATABASE
public static ConfigService.ConfigurationType[] values()
for (ConfigService.ConfigurationType c : ConfigService.ConfigurationType.values()) System.out.println(c);
public static ConfigService.ConfigurationType 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 © 2018 Ken Händel. All rights reserved.