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