public enum DocumentStatusForApi extends Enum<DocumentStatusForApi>
Enum Constant and Description |
---|
COMPLETED |
ERROR |
IN_PROGRESS |
READY |
Modifier and Type | Method and Description |
---|---|
static DocumentStatusForApi |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentStatusForApi[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentStatusForApi COMPLETED
public static final DocumentStatusForApi IN_PROGRESS
public static final DocumentStatusForApi READY
public static final DocumentStatusForApi ERROR
public static DocumentStatusForApi[] values()
for (DocumentStatusForApi c : DocumentStatusForApi.values()) System.out.println(c);
public static DocumentStatusForApi 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 nullCopyright © 2019. All rights reserved.