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