public static enum PropertyConfiguration.Evaluation extends java.lang.Enum<PropertyConfiguration.Evaluation>
Enum Constant and Description |
---|
DEFERRED
Verify that a value is available for the property in the requested locale
upon invocation of the accessing method of a properties interface instance,
and fail the request with an exception if it is not.
|
IMMEDIATE
Verify that a value is available for the property in the root locale
during construction of a properties interface instance, and fail the
request with an exception if it is not.
|
UNSPECIFIED
Inherit the requirement settings, or
DEFERRED by default. |
Modifier and Type | Method and Description |
---|---|
static PropertyConfiguration.Evaluation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyConfiguration.Evaluation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyConfiguration.Evaluation IMMEDIATE
public static final PropertyConfiguration.Evaluation DEFERRED
public static final PropertyConfiguration.Evaluation UNSPECIFIED
DEFERRED
by default.public static PropertyConfiguration.Evaluation[] values()
for (PropertyConfiguration.Evaluation c : PropertyConfiguration.Evaluation.values()) System.out.println(c);
public static PropertyConfiguration.Evaluation 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