public static enum Workflow.StatusEnum extends java.lang.Enum<Workflow.StatusEnum>
Enum Constant and Description |
---|
FAILED |
IN_PROGRESS |
SUCCEEDED |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Workflow.StatusEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Workflow.StatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Workflow.StatusEnum SUCCEEDED
public static final Workflow.StatusEnum FAILED
public static final Workflow.StatusEnum IN_PROGRESS
public static Workflow.StatusEnum[] values()
for (Workflow.StatusEnum c : Workflow.StatusEnum.values()) System.out.println(c);
public static Workflow.StatusEnum 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Workflow.StatusEnum>
Copyright 2003, 2014, Oracle and/or its affiliates. All rights reserved.