| Enum Constant and Description |
|---|
ACT_STATUS_UNKNOWN |
CREATE_ACT_FAILED |
CREATE_ACT_STATUS |
ONGOING_ACT_STATUS |
OVER_TIME_ACT_STATUS |
STOP_ACT_STATUS |
TERMINATE_ACT_STATUS |
| Modifier and Type | Method and Description |
|---|---|
static ActStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="ACT_STATUS_UNKNOWN") public static final ActStatus ACT_STATUS_UNKNOWN
@SerializedName(value="CREATE_ACT_STATUS") public static final ActStatus CREATE_ACT_STATUS
@SerializedName(value="ONGOING_ACT_STATUS") public static final ActStatus ONGOING_ACT_STATUS
@SerializedName(value="TERMINATE_ACT_STATUS") public static final ActStatus TERMINATE_ACT_STATUS
@SerializedName(value="STOP_ACT_STATUS") public static final ActStatus STOP_ACT_STATUS
@SerializedName(value="OVER_TIME_ACT_STATUS") public static final ActStatus OVER_TIME_ACT_STATUS
@SerializedName(value="CREATE_ACT_FAILED") public static final ActStatus CREATE_ACT_FAILED
public static ActStatus[] values()
for (ActStatus c : ActStatus.values()) System.out.println(c);
public static ActStatus 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 null