Enum Class ConfigurationPropertyState
java.lang.Object
java.lang.Enum<ConfigurationPropertyState>
org.springframework.boot.context.properties.source.ConfigurationPropertyState
- All Implemented Interfaces:
- Serializable, Comparable<ConfigurationPropertyState>, Constable
The state of content from a 
ConfigurationPropertySource.- Since:
- 2.0.0
- Author:
- Phillip Webb
- 
Nested Class SummaryNested classes/interfaces inherited from class EnumEnum.EnumDesc<E>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionTheConfigurationPropertySourcehas no matchingConfigurationProperties.TheConfigurationPropertySourcehas at least one matchingConfigurationProperty.It's not possible to determine ifConfigurationPropertySourcehas matchingConfigurationPropertiesor not.
- 
Method SummaryModifier and TypeMethodDescriptionstatic ConfigurationPropertyStateReturns the enum constant of this class with the specified name.static ConfigurationPropertyState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
PRESENTTheConfigurationPropertySourcehas at least one matchingConfigurationProperty.
- 
ABSENTTheConfigurationPropertySourcehas no matchingConfigurationProperties.
- 
UNKNOWNIt's not possible to determine ifConfigurationPropertySourcehas matchingConfigurationPropertiesor not.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
 
-