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