Package org.springframework.boot.env
Enum Class ConfigTreePropertySource.Option
java.lang.Object
java.lang.Enum<ConfigTreePropertySource.Option>
org.springframework.boot.env.ConfigTreePropertySource.Option
- All Implemented Interfaces:
Serializable
,Comparable<ConfigTreePropertySource.Option>
,Constable
- Enclosing class:
- ConfigTreePropertySource
Property source options.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAlways read the value of the file when accessing the property value.Automatically attempt trim trailing new-line characters.Convert file and directory names to lowercase. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ConfigTreePropertySource.Option[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALWAYS_READ
Always read the value of the file when accessing the property value. When this option is not set the property source will cache the value when it's first read. -
USE_LOWERCASE_NAMES
Convert file and directory names to lowercase. -
AUTO_TRIM_TRAILING_NEW_LINE
Automatically attempt trim trailing new-line characters.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-