Package com.sas.lsaf.workflow.element
Enum Class CompletedElement.TaskCompletedState
java.lang.Object
java.lang.Enum<CompletedElement.TaskCompletedState>
com.sas.lsaf.workflow.element.CompletedElement.TaskCompletedState
- All Implemented Interfaces:
Serializable,Comparable<CompletedElement.TaskCompletedState>,Constable
- Enclosing class:
CompletedElement
public static enum CompletedElement.TaskCompletedState
extends Enum<CompletedElement.TaskCompletedState>
The completed states of the element.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe job was cancelled.The job completed successfully but there were errors when checking in the job files.The task failed.The job completed with errors.The job completed with errors and there were errors when checking in the job files.The job completed with warnings.The job completed with warnings and there were errors when checking in the job files.The task completed successfully.The task did not specify recipients.There was an issue with the process flow owner account, so the task did not run.The set up information was missing.The element was terminated because a terminate end event was reached, which ended the process flow.The task completion state is unknown. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CompletedElement.TaskCompletedState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMPLETED_SUCCESSFUL
The task completed successfully. -
COMPLETED_SASERRORS
The job completed with errors. -
COMPLETED_CHECKIN_ERROR
The job completed successfully but there were errors when checking in the job files. -
COMPLETED_SASERRORS_CHECKIN_ERROR
The job completed with errors and there were errors when checking in the job files. -
COMPLETED_FAILED
The task failed. -
COMPLETED_CANCELED
The job was cancelled. -
COMPLETED_SASWARNINGS
The job completed with warnings. -
COMPLETED_SASWARNINGS_CHECKIN_ERROR
The job completed with warnings and there were errors when checking in the job files. -
SETUP_NOT_ENTERED
The set up information was missing. -
PROCESS_FLOW_OWNER_ACCOUNT_ERROR
There was an issue with the process flow owner account, so the task did not run. -
NO_VALID_RECIPIENTS
The task did not specify recipients. -
TERMINATED
The element was terminated because a terminate end event was reached, which ended the process flow. -
UNKNOWN
The task completion state is unknown.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-