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