public enum ApplicationEventType extends Enum<ApplicationEventType>
| Modifier and Type | Method and Description | 
|---|---|
| static ApplicationEventType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ApplicationEventType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ApplicationEventType INIT_APPLICATION
public static final ApplicationEventType INIT_CONTAINER
public static final ApplicationEventType FINISH_APPLICATION
public static final ApplicationEventType APPLICATION_INITED
public static final ApplicationEventType APPLICATION_RESOURCES_CLEANEDUP
public static final ApplicationEventType APPLICATION_CONTAINER_FINISHED
public static final ApplicationEventType APPLICATION_LOG_HANDLING_INITED
public static final ApplicationEventType APPLICATION_LOG_HANDLING_FINISHED
public static final ApplicationEventType APPLICATION_LOG_HANDLING_FAILED
public static ApplicationEventType[] values()
for (ApplicationEventType c : ApplicationEventType.values()) System.out.println(c);
public static ApplicationEventType 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 © 2008–2023 Apache Software Foundation. All rights reserved.