public static enum ConfigurationCondition.ConfigurationPhase extends java.lang.Enum<ConfigurationCondition.ConfigurationPhase>
| Enum Constant and Description | 
|---|
PARSE_CONFIGURATION
The  
Condition should be evaluated as a @Configuration
 class is being parsed. | 
REGISTER_BEAN
The  
Condition should be evaluated when adding a regular
 (non @Configuration) bean. | 
| Modifier and Type | Method and Description | 
|---|---|
static ConfigurationCondition.ConfigurationPhase | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ConfigurationCondition.ConfigurationPhase[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ConfigurationCondition.ConfigurationPhase PARSE_CONFIGURATION
Condition should be evaluated as a @Configuration
 class is being parsed.
 If the condition does not match at this point, the @Configuration
 class will not be added.
public static final ConfigurationCondition.ConfigurationPhase REGISTER_BEAN
Condition should be evaluated when adding a regular
 (non @Configuration) bean. The condition will not prevent
 @Configuration classes from being added.
 At the time that the condition is evaluated, all @Configurations
 will have been parsed.
public static ConfigurationCondition.ConfigurationPhase[] values()
for (ConfigurationCondition.ConfigurationPhase c : ConfigurationCondition.ConfigurationPhase.values()) System.out.println(c);
public static ConfigurationCondition.ConfigurationPhase valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null