Package com.orchestranetworks.workflow
Enum WaitTaskResumeResult.ErrorReason
- java.lang.Object
-
- java.lang.Enum<WaitTaskResumeResult.ErrorReason>
-
- com.orchestranetworks.workflow.WaitTaskResumeResult.ErrorReason
-
- All Implemented Interfaces:
Serializable,Comparable<WaitTaskResumeResult.ErrorReason>
- Enclosing class:
- WaitTaskResumeResult
public static enum WaitTaskResumeResult.ErrorReason extends Enum<WaitTaskResumeResult.ErrorReason>
Indicates the reason of a resumption failure.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVENT_ALREADY_RECEIVEDPROCESS_INSTANCE_NOT_FOUND
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCode()Returns the error code associated with the error reason.booleanisEventAlreadyReceived()Returnstrueif the error reason isEVENT_ALREADY_RECEIVEDbooleanisProcessInstanceNotFound()Returnstrueif the error reason isPROCESS_INSTANCE_NOT_FOUNDstatic WaitTaskResumeResult.ErrorReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static WaitTaskResumeResult.ErrorReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESS_INSTANCE_NOT_FOUND
public static final WaitTaskResumeResult.ErrorReason PROCESS_INSTANCE_NOT_FOUND
-
EVENT_ALREADY_RECEIVED
public static final WaitTaskResumeResult.ErrorReason EVENT_ALREADY_RECEIVED
-
-
Method Detail
-
values
public static WaitTaskResumeResult.ErrorReason[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WaitTaskResumeResult.ErrorReason c : WaitTaskResumeResult.ErrorReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WaitTaskResumeResult.ErrorReason valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isProcessInstanceNotFound
public final boolean isProcessInstanceNotFound()
Returnstrueif the error reason isPROCESS_INSTANCE_NOT_FOUND
-
isEventAlreadyReceived
public final boolean isEventAlreadyReceived()
Returnstrueif the error reason isEVENT_ALREADY_RECEIVED
-
getCode
public final String getCode()
Returns the error code associated with the error reason.This code is returned in the web service of the wait task resumption.
-
-