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