public static enum Configuration.PropertyResolutionStyle extends Enum<Configuration.PropertyResolutionStyle>
Enum Constant and Description |
---|
CASE_INSENSITIVE
Properties are matched if the names are identical.
|
CASE_SENSITIVE
Properties are only matched if the names are identical in name
and case to the original property name.
|
DISTINCT_CASE_INSENSITIVE
Properties are matched if the names are identical.
|
Modifier and Type | Method and Description |
---|---|
static Configuration.PropertyResolutionStyle |
getDefault()
Returns the default property resolution style.
|
static Configuration.PropertyResolutionStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.PropertyResolutionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.PropertyResolutionStyle CASE_SENSITIVE
public static final Configuration.PropertyResolutionStyle CASE_INSENSITIVE
public static final Configuration.PropertyResolutionStyle DISTINCT_CASE_INSENSITIVE
public static Configuration.PropertyResolutionStyle[] values()
for (Configuration.PropertyResolutionStyle c : Configuration.PropertyResolutionStyle.values()) System.out.println(c);
public static Configuration.PropertyResolutionStyle 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 nullpublic static Configuration.PropertyResolutionStyle getDefault()