public static enum AppBuilderAppConstants.Status extends java.lang.Enum<AppBuilderAppConstants.Status>
Enum Constant and Description |
---|
DEPLOYED |
UNDEPLOYED |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel() |
int |
getValue() |
static AppBuilderAppConstants.Status |
parse(int value) |
static AppBuilderAppConstants.Status |
parse(java.lang.String label) |
static AppBuilderAppConstants.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppBuilderAppConstants.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppBuilderAppConstants.Status DEPLOYED
public static final AppBuilderAppConstants.Status UNDEPLOYED
public static AppBuilderAppConstants.Status[] values()
for (AppBuilderAppConstants.Status c : AppBuilderAppConstants.Status.values()) System.out.println(c);
public static AppBuilderAppConstants.Status valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static AppBuilderAppConstants.Status parse(int value)
public static AppBuilderAppConstants.Status parse(java.lang.String label)
public java.lang.String getLabel()
public int getValue()