public enum RMWorkflowStatus extends java.lang.Enum<RMWorkflowStatus>
Enum Constant and Description |
---|
Completed
Indicates that the workflow has completed.
|
NotStarted
Indicates that the workflow has NOT started..
|
Started
Indicates that the workflow has started.
|
Modifier and Type | Method and Description |
---|---|
static RMWorkflowStatus |
getInstanceFromInt(int intValue)
Provides the
RMWorkflowStatus instance that corresponds to the given
int value. |
int |
getIntValue()
Returns the integer value associated with this member.
|
static RMWorkflowStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RMWorkflowStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RMWorkflowStatus NotStarted
public static final RMWorkflowStatus Started
public static final RMWorkflowStatus Completed
public static RMWorkflowStatus[] values()
for (RMWorkflowStatus c : RMWorkflowStatus.values()) System.out.println(c);
public static RMWorkflowStatus 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 int getIntValue()
int
value.public static RMWorkflowStatus getInstanceFromInt(int intValue)
RMWorkflowStatus
instance that corresponds to the given
int
value.intValue
- the int
value to look up.RMWorkflowStatus
value or null
if no such value
corresponds to the given intValue
parameter.© Copyright IBM Corp. 2010, 2013. All Rights Reserved.