public enum ApplicationEventType extends Enum<ApplicationEventType>
Enum Constant and Description |
---|
DISABLING
Indicates an installed application is about to be stopped/disabled.
|
INSTALLING
Indicates an application is about to be installed.
|
STARTED
Indicates an installed application is running.
|
STOPPED
Indicates an installed application is stopped/disabled.
|
UNINSTALLING
Indicates an application is about to be uninstalled.
|
UPGRADING
Indicates an application is about to be upgraded.
|
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 INSTALLING
public static final ApplicationEventType UPGRADING
public static final ApplicationEventType STOPPED
public static final ApplicationEventType STARTED
public static final ApplicationEventType DISABLING
public static final ApplicationEventType UNINSTALLING
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 © 2015. All Rights Reserved.