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