protected static enum PropertySourcePropertyResolver.PropertyCatalog extends java.lang.Enum<PropertySourcePropertyResolver.PropertyCatalog>
| Enum Constant and Description | 
|---|
| GENERATEDThe catalog that contains normalized keys and also generated keys. | 
| NORMALIZEDThe catalog that contains normalized keys. | 
| RAWThe catalog that contains the raw keys. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PropertySourcePropertyResolver.PropertyCatalog | valueOf(java.lang.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(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