public enum ExportStatus extends java.lang.Enum<ExportStatus>
| Enum Constant and Description |
|---|
DONE |
ERROR |
IN_PROGRESS |
SCHEDULED |
| Modifier and Type | Method and Description |
|---|---|
static ExportStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExportStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportStatus SCHEDULED
public static final ExportStatus IN_PROGRESS
public static final ExportStatus DONE
public static final ExportStatus ERROR
public static ExportStatus[] values()
for (ExportStatus c : ExportStatus.values()) System.out.println(c);
public static ExportStatus 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 null