public enum LifeCycleEvent extends Enum<LifeCycleEvent>
| Enum Constant and Description | 
|---|
| CONFIG | 
| END | 
| LOADING | 
| START | 
| TRANSFORM | 
| Modifier and Type | Method and Description | 
|---|---|
| static LifeCycleEvent | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LifeCycleEvent[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LifeCycleEvent START
public static final LifeCycleEvent END
public static final LifeCycleEvent TRANSFORM
public static final LifeCycleEvent LOADING
public static final LifeCycleEvent CONFIG
public static LifeCycleEvent[] values()
for (LifeCycleEvent c : LifeCycleEvent.values()) System.out.println(c);
public static LifeCycleEvent 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 nullCopyright © 2020. All rights reserved.