public enum PropertyResolutionStyle extends Enum<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 PropertyResolutionStyle |
getDefault()
Returns the default property resolution style.
|
static PropertyResolutionStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyResolutionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyResolutionStyle CASE_SENSITIVE
public static final PropertyResolutionStyle CASE_INSENSITIVE
public static final PropertyResolutionStyle DISTINCT_CASE_INSENSITIVE
public static PropertyResolutionStyle[] values()
for (PropertyResolutionStyle c : PropertyResolutionStyle.values()) System.out.println(c);
public static 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 PropertyResolutionStyle getDefault()
Copyright © 2005–2018. All rights reserved.