Package | Description |
---|---|
org.springframework.boot.context.config |
External configuration support allowing 'application.properties' to be loaded and used
within a Spring Boot application.
|
Modifier and Type | Field and Description |
---|---|
static ConfigData.Options |
ConfigData.Options.NONE
No options.
|
Modifier and Type | Method and Description |
---|---|
ConfigData.Options |
ConfigData.PropertySourceOptions.get(PropertySource<?> propertySource)
Return the options that should apply for the given property source.
|
ConfigData.Options |
ConfigData.getOptions(PropertySource<?> propertySource)
Return the
config data options that apply to the given source. |
static ConfigData.Options |
ConfigData.Options.of(ConfigData.Option... options)
Create a new instance with the given
ConfigData.Option values. |
ConfigData.Options |
ConfigData.Options.with(ConfigData.Option option)
Create a new
ConfigData.Options instance that contains the options in this set
including the given option. |
ConfigData.Options |
ConfigData.Options.without(ConfigData.Option option)
Create a new
ConfigData.Options instance that contains the options in this set
excluding the given option. |
Modifier and Type | Method and Description |
---|---|
static ConfigData.PropertySourceOptions |
ConfigData.PropertySourceOptions.always(ConfigData.Options options)
Create a new
ConfigData.PropertySourceOptions instance that always returns the
same options regardless of the property source. |