public enum ACTIONSTATUS extends Enum<ACTIONSTATUS>
Java class for ACTION_STATUS.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ACTION_STATUS">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DONE"/>
<enumeration value="ONGOING"/>
<enumeration value="FAILED"/>
<enumeration value="WAITING"/>
<enumeration value="ASSIGNED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ASSIGNED |
DONE |
FAILED |
ONGOING |
WAITING |
| Modifier and Type | Method and Description |
|---|---|
static ACTIONSTATUS |
fromValue(String v) |
String |
value() |
static ACTIONSTATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ACTIONSTATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ACTIONSTATUS DONE
public static final ACTIONSTATUS ONGOING
public static final ACTIONSTATUS FAILED
public static final ACTIONSTATUS WAITING
public static final ACTIONSTATUS ASSIGNED
public static ACTIONSTATUS[] values()
for (ACTIONSTATUS c : ACTIONSTATUS.values()) System.out.println(c);
public static ACTIONSTATUS 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 String value()
public static ACTIONSTATUS fromValue(String v)
Copyright © 2017. All rights reserved.