public static enum WorkflowClient.Status extends Enum<WorkflowClient.Status>
Enum Constant and Description |
---|
ABORTED |
COMPLETED |
RUNNING |
SUSPENDED |
Modifier and Type | Method and Description |
---|---|
String |
getString()
returns the string associated with this status enum
|
static WorkflowClient.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowClient.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowClient.Status RUNNING
public static final WorkflowClient.Status SUSPENDED
public static final WorkflowClient.Status ABORTED
public static final WorkflowClient.Status COMPLETED
public static WorkflowClient.Status[] values()
for (WorkflowClient.Status c : WorkflowClient.Status.values()) System.out.println(c);
public static WorkflowClient.Status 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 getString()
Copyright © 2018. All rights reserved.