public enum LocalizationEventType extends Enum<LocalizationEventType>
| Enum Constant and Description | 
|---|
| CACHE_CLEANUP | 
| CLEANUP_CONTAINER_RESOURCES | 
| CONTAINER_RESOURCES_LOCALIZED | 
| DESTROY_APPLICATION_RESOURCES | 
| INIT_APPLICATION_RESOURCES | 
| LOCALIZE_CONTAINER_RESOURCES | 
| Modifier and Type | Method and Description | 
|---|---|
| static LocalizationEventType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LocalizationEventType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LocalizationEventType INIT_APPLICATION_RESOURCES
public static final LocalizationEventType LOCALIZE_CONTAINER_RESOURCES
public static final LocalizationEventType CACHE_CLEANUP
public static final LocalizationEventType CLEANUP_CONTAINER_RESOURCES
public static final LocalizationEventType DESTROY_APPLICATION_RESOURCES
public static final LocalizationEventType CONTAINER_RESOURCES_LOCALIZED
public static LocalizationEventType[] values()
for (LocalizationEventType c : LocalizationEventType.values()) System.out.println(c);
public static LocalizationEventType 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.