protected static enum PropertySourcePropertyResolver.PropertyCatalog extends Enum<PropertySourcePropertyResolver.PropertyCatalog>
| Enum Constant and Description | 
|---|
GENERATED
The catalog that contains normalized keys and also generated keys. 
 | 
NORMALIZED
The catalog that contains normalized keys. 
 | 
RAW
The catalog that contains the raw keys. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static PropertySourcePropertyResolver.PropertyCatalog | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static PropertySourcePropertyResolver.PropertyCatalog[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PropertySourcePropertyResolver.PropertyCatalog RAW
public static final PropertySourcePropertyResolver.PropertyCatalog NORMALIZED
FOO_BAR would be
 normalized to foo.bar.public static final PropertySourcePropertyResolver.PropertyCatalog GENERATED
FOO_BAR_BAZ which will produce the following keys: foo.bar.baz,
 foo.bar-baz, and foo-bar.baz.public static PropertySourcePropertyResolver.PropertyCatalog[] values()
for (PropertySourcePropertyResolver.PropertyCatalog c : PropertySourcePropertyResolver.PropertyCatalog.values()) System.out.println(c);
public static PropertySourcePropertyResolver.PropertyCatalog 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 null