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

public static enum ConfigTreePropertySource.Option extends Enum<ConfigTreePropertySource.Option>
Property source options.
  • Enum Constant Details

    • ALWAYS_READ

      public static final ConfigTreePropertySource.Option 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

      public static final ConfigTreePropertySource.Option USE_LOWERCASE_NAMES
      Convert file and directory names to lowercase.
    • AUTO_TRIM_TRAILING_NEW_LINE

      public static final ConfigTreePropertySource.Option AUTO_TRIM_TRAILING_NEW_LINE
      Automatically attempt trim trailing new-line characters.
  • Method Details

    • values

      public static ConfigTreePropertySource.Option[] 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

      public static ConfigTreePropertySource.Option valueOf(String name)
      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 name
      NullPointerException - if the argument is null