public enum BatchResponseStatusType extends Enum<BatchResponseStatusType>
Java class for BatchResponseStatusType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BatchResponseStatusType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="RECEIVED"/>
<enumeration value="PROCESSING"/>
<enumeration value="COMPLETED"/>
<enumeration value="RETRIEVED"/>
<enumeration value="DELETED"/>
<enumeration value="NOTFOUND"/>
<enumeration value="ERROR"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COMPLETED
Batch has been processed.
|
DELETED
Provided Batch is deleted
|
ERROR
An error status
|
NOTFOUND
Provided Batch identifier is not found
|
PROCESSING
Batch is being processed.
|
RECEIVED
Batch is received.
|
RETRIEVED
Batch is retrieved
|
| Modifier and Type | Method and Description |
|---|---|
static BatchResponseStatusType |
fromValue(String v) |
String |
value() |
static BatchResponseStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BatchResponseStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BatchResponseStatusType RECEIVED
public static final BatchResponseStatusType PROCESSING
public static final BatchResponseStatusType COMPLETED
public static final BatchResponseStatusType RETRIEVED
public static final BatchResponseStatusType DELETED
public static final BatchResponseStatusType NOTFOUND
public static final BatchResponseStatusType ERROR
public static BatchResponseStatusType[] values()
for (BatchResponseStatusType c : BatchResponseStatusType.values()) System.out.println(c);
public static BatchResponseStatusType 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 BatchResponseStatusType fromValue(String v)
Copyright © 2021. All rights reserved.