public enum WorkflowEventType extends java.lang.Enum<WorkflowEventType>
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
static WorkflowEventType |
getForCode(int code) |
static WorkflowEventType |
getForLabel(java.lang.String label) |
java.lang.String |
getLabel() |
static WorkflowEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowEventType EVENT_SR_SUBMITTED
public static final WorkflowEventType EVENT_SR_SENT_FOR_APPROVAL
public static final WorkflowEventType EVENT_SR_USER_APPROVED
public static final WorkflowEventType EVENT_SR_USER_REJECTED
public static final WorkflowEventType EVENT_SR_BUDGET_EXCEEDED
public static final WorkflowEventType EVENT_SR_RESOURCE_ALLOCATED
public static final WorkflowEventType EVENT_SR_RESOURCE_ALLOCATION_FAILED
public static final WorkflowEventType EVENT_SR_STARTING_PROVISION
public static final WorkflowEventType EVENT_SR_PROVISION_FAILED
public static final WorkflowEventType EVENT_SR_NOTIFICATION
public static final WorkflowEventType EVENT_SR_TERM_NOTIFICATION
public static final WorkflowEventType EVENT_SR_TERMINATING
public static final WorkflowEventType EVENT_SR_TERMINATED
public static WorkflowEventType[] values()
for (WorkflowEventType c : WorkflowEventType.values()) System.out.println(c);
public static WorkflowEventType 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 getCode()
public java.lang.String getLabel()
public static WorkflowEventType getForCode(int code)
public static WorkflowEventType getForLabel(java.lang.String label)