Uses of Enum Class
org.springframework.boot.context.config.ConfigData.Option
Package
Description
External configuration support allowing 'application.properties' to be loaded and used
within a Spring Boot application.
-
Uses of ConfigData.Option in org.springframework.boot.context.config
Modifier and TypeMethodDescriptionstatic ConfigData.Option
Returns the enum constant of this class with the specified name.static ConfigData.Option[]
ConfigData.Option.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionConfigData.PropertySourceOptions.always
(ConfigData.Option... options) Create a newConfigData.PropertySourceOptions
instance that always returns the same options regardless of the property source.boolean
ConfigData.Options.contains
(ConfigData.Option option) Returns if the given option is contained in this set.static ConfigData.Options
ConfigData.Options.of
(ConfigData.Option... options) Create a new instance with the givenConfigData.Option
values.ConfigData.Options.with
(ConfigData.Option option) Create a newConfigData.Options
instance that contains the options in this set including the given option.ConfigData.Options.without
(ConfigData.Option option) Create a newConfigData.Options
instance that contains the options in this set excluding the given option.ModifierConstructorDescriptionConfigData
(Collection<? extends PropertySource<?>> propertySources, ConfigData.Option... options) Create a newConfigData
instance with the same options applied to each source.