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