public static enum PropertyConfiguration.Defaults extends java.lang.Enum<PropertyConfiguration.Defaults>
Enum Constant and Description |
---|
ALLOW
If a default value is available for a property, it should be provided as
if it were successfully fetched.
|
IGNORE
If a default value is available for a property, it should be ignored.
|
UNSPECIFIED
Inherit the requirement settings, or
ALLOW by default. |
Modifier and Type | Method and Description |
---|---|
static PropertyConfiguration.Defaults |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyConfiguration.Defaults[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyConfiguration.Defaults ALLOW
public static final PropertyConfiguration.Defaults IGNORE
public static final PropertyConfiguration.Defaults UNSPECIFIED
ALLOW
by default.public static PropertyConfiguration.Defaults[] values()
for (PropertyConfiguration.Defaults c : PropertyConfiguration.Defaults.values()) System.out.println(c);
public static PropertyConfiguration.Defaults 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