public static enum Bundle.State extends Enum<Bundle.State>
Enum Constant and Description |
---|
ACTIVE |
INSTALLED |
RESOLVED |
STARTING |
STOPPING |
UNINSTALLED |
Modifier and Type | Method and Description |
---|---|
static Bundle.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bundle.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bundle.State UNINSTALLED
public static final Bundle.State INSTALLED
public static final Bundle.State RESOLVED
public static final Bundle.State STARTING
public static final Bundle.State STOPPING
public static final Bundle.State ACTIVE
public static Bundle.State[] values()
for (Bundle.State c : Bundle.State.values()) System.out.println(c);
public static Bundle.State 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 © 2003–2017 Atlassian. All rights reserved.