public enum AckCodeType extends java.lang.Enum<AckCodeType>
Java class for AckCodeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AckCodeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="Success"/>
<enumeration value="Failure"/>
<enumeration value="Warning"/>
<enumeration value="SuccessWithWarning"/>
<enumeration value="FailureWithWarning"/>
<enumeration value="PartialSuccess"/>
<enumeration value="CustomCode"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CUSTOM_CODE
Reserved for internal or future use.
|
FAILURE
Request processing failed.
|
FAILURE_WITH_WARNING
Request processing failed with some error and warnining
information that requesting application should process to
determine cause(s) of failure.
|
PARTIAL_SUCCESS
Request processing completed with Partial Success.
|
SUCCESS
Request processing succeeded.
|
SUCCESS_WITH_WARNING
Request processing completed successful with some
with some warning information that could be useful for
the requesting application to process and/or record.
|
WARNING
Request processing completed with warning information
being included in the response message.
|
| Modifier and Type | Method and Description |
|---|---|
static AckCodeType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static AckCodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AckCodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AckCodeType SUCCESS
public static final AckCodeType FAILURE
public static final AckCodeType WARNING
public static final AckCodeType SUCCESS_WITH_WARNING
public static final AckCodeType FAILURE_WITH_WARNING
public static final AckCodeType PARTIAL_SUCCESS
public static final AckCodeType CUSTOM_CODE
public static AckCodeType[] values()
for (AckCodeType c : AckCodeType.values()) System.out.println(c);
public static AckCodeType 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 nullpublic java.lang.String value()
public static AckCodeType fromValue(java.lang.String v)
stSoftware Copyright © 2001-2014 stSoftware All Rights Reserved.