public static enum ConfigTreePropertySource.Option extends Enum<ConfigTreePropertySource.Option>
| Enum Constant and Description | 
|---|
ALWAYS_READ
Always read the value of the file when accessing the property value. 
 | 
AUTO_TRIM_TRAILING_NEW_LINE
Automatically attempt trim trailing new-line characters. 
 | 
USE_LOWERCASE_NAMES
Convert file and directory names to lowercase. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ConfigTreePropertySource.Option | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ConfigTreePropertySource.Option[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ConfigTreePropertySource.Option ALWAYS_READ
public static final ConfigTreePropertySource.Option USE_LOWERCASE_NAMES
public static final ConfigTreePropertySource.Option AUTO_TRIM_TRAILING_NEW_LINE
public static ConfigTreePropertySource.Option[] values()
for (ConfigTreePropertySource.Option c : ConfigTreePropertySource.Option.values()) System.out.println(c);
public static ConfigTreePropertySource.Option 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