public enum WorkbookOperationStatus extends java.lang.Enum<WorkbookOperationStatus>
| Enum Constant and Description |
|---|
FAILED
failed
|
NOT_STARTED
not Started
|
RUNNING
running
|
SUCCEEDED
succeeded
|
UNEXPECTED_VALUE
For WorkbookOperationStatus values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static WorkbookOperationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorkbookOperationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkbookOperationStatus NOT_STARTED
public static final WorkbookOperationStatus RUNNING
public static final WorkbookOperationStatus SUCCEEDED
public static final WorkbookOperationStatus FAILED
public static final WorkbookOperationStatus UNEXPECTED_VALUE
public static WorkbookOperationStatus[] values()
for (WorkbookOperationStatus c : WorkbookOperationStatus.values()) System.out.println(c);
public static WorkbookOperationStatus 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