public enum ConfigurationPolicy extends Enum<ConfigurationPolicy>
| Enum Constant and Description |
|---|
OPTIONAL
Defines the optional configuration policy.
|
REQUIRED
Defines the required configuration policy.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationPolicy OPTIONAL
public static final ConfigurationPolicy REQUIRED
public static ConfigurationPolicy[] values()
for (ConfigurationPolicy c : ConfigurationPolicy.values()) System.out.println(c);
public static ConfigurationPolicy 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 © Contributors to the Eclipse Foundation Licensed under the Eclipse Foundation Specification License – v1.0