public enum RegistrationPhase extends Enum<RegistrationPhase>
| Enum Constant and Description | 
|---|
INIT  | 
LOADED  | 
POST_INIT  | 
PRE_INIT  | 
PRE_REGISTRY  | 
| Modifier and Type | Method and Description | 
|---|---|
static RegistrationPhase | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static RegistrationPhase[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final RegistrationPhase PRE_REGISTRY
public static final RegistrationPhase PRE_INIT
public static final RegistrationPhase INIT
public static final RegistrationPhase POST_INIT
public static final RegistrationPhase LOADED
public static RegistrationPhase[] values()
for (RegistrationPhase c : RegistrationPhase.values()) System.out.println(c);
public static RegistrationPhase valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null