Package com.compuware.api.topaz.jes
Enum ExecutionStatus
- java.lang.Object
-
- java.lang.Enum<ExecutionStatus>
-
- com.compuware.api.topaz.jes.ExecutionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<ExecutionStatus>
public enum ExecutionStatus extends Enum<ExecutionStatus>
Enumeration of JES execution statuses.- Since:
- 2.2.0
- Version:
- 2.2.0
- See Also:
IJob.getExecutionStatus()
- Restriction:
- This enum is not intended to be extended by clients.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABENDED
JES execution status for a job that ended abnormally.ACTIVE_IN_OUTPUT_QUEUE
JES execution status for a job that is active in the output queue.AWAITING_EXECUTION
JES execution status for a job that is awaiting execution.AWAITING_HARDCOPY
JES execution status for a job that is awaiting hardcopy.AWAITING_NJE_TRANSMISSION
JES execution status for a job that is awaiting Network Job Entry (NJE) transmission.AWAITING_OUTPUT
JES execution status for a job that is awaiting output.AWAITING_RESOURCE
JES execution status for a job that is awaiting resource.CANCELED
JES execution status for a job that was canceled.ENDED_BY_CONDITION_CODE
JES execution status for a job that was ended by a condition code.ENDED_NORMALLY
JES execution status for a job that ended normally with a return code less than 0004.ENDED_WITH_ERRORS
JES execution status for a job that ended normally with a return code greater than or equal to 0008.ENDED_WITH_WARNINGS
JES execution status for a job that ended normally with a return code greater than or equal to 0004 but less than 0008.EXECUTING
JES execution status for a job that is currently executing.FAILED_IN_END_OF_MEMORY
JES execution status for a job that failed in "end of memory".JCL_CONVERTER_ABENDED
JES execution status for a job where the JCL converter ended abnormally.JCL_ERROR
JES execution status for a job with a JCL error.SECURITY_ERROR
JES execution status for a job that had a security error.TRANSITION_PHASE
JES execution status for a job that is in a transition phase.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExecutionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExecutionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENDED_NORMALLY
public static final ExecutionStatus ENDED_NORMALLY
JES execution status for a job that ended normally with a return code less than 0004.- Since:
- 2.2.0
-
ENDED_WITH_WARNINGS
public static final ExecutionStatus ENDED_WITH_WARNINGS
JES execution status for a job that ended normally with a return code greater than or equal to 0004 but less than 0008.- Since:
- 2.2.0
-
ENDED_WITH_ERRORS
public static final ExecutionStatus ENDED_WITH_ERRORS
JES execution status for a job that ended normally with a return code greater than or equal to 0008.- Since:
- 2.2.0
-
ENDED_BY_CONDITION_CODE
public static final ExecutionStatus ENDED_BY_CONDITION_CODE
JES execution status for a job that was ended by a condition code.- Since:
- 2.2.0
-
JCL_ERROR
public static final ExecutionStatus JCL_ERROR
JES execution status for a job with a JCL error.- Since:
- 2.2.0
-
CANCELED
public static final ExecutionStatus CANCELED
JES execution status for a job that was canceled.- Since:
- 2.2.0
-
ABENDED
public static final ExecutionStatus ABENDED
JES execution status for a job that ended abnormally.- Since:
- 2.2.0
-
JCL_CONVERTER_ABENDED
public static final ExecutionStatus JCL_CONVERTER_ABENDED
JES execution status for a job where the JCL converter ended abnormally.- Since:
- 2.2.0
-
SECURITY_ERROR
public static final ExecutionStatus SECURITY_ERROR
JES execution status for a job that had a security error.- Since:
- 2.2.0
-
FAILED_IN_END_OF_MEMORY
public static final ExecutionStatus FAILED_IN_END_OF_MEMORY
JES execution status for a job that failed in "end of memory".- Since:
- 2.2.0
-
EXECUTING
public static final ExecutionStatus EXECUTING
JES execution status for a job that is currently executing.- Since:
- 2.2.0
-
AWAITING_OUTPUT
public static final ExecutionStatus AWAITING_OUTPUT
JES execution status for a job that is awaiting output.- Since:
- 2.2.0
-
AWAITING_EXECUTION
public static final ExecutionStatus AWAITING_EXECUTION
JES execution status for a job that is awaiting execution.- Since:
- 2.2.0
-
AWAITING_RESOURCE
public static final ExecutionStatus AWAITING_RESOURCE
JES execution status for a job that is awaiting resource.- Since:
- 2.2.0
-
ACTIVE_IN_OUTPUT_QUEUE
public static final ExecutionStatus ACTIVE_IN_OUTPUT_QUEUE
JES execution status for a job that is active in the output queue.- Since:
- 2.2.0
-
AWAITING_HARDCOPY
public static final ExecutionStatus AWAITING_HARDCOPY
JES execution status for a job that is awaiting hardcopy.- Since:
- 2.2.0
-
AWAITING_NJE_TRANSMISSION
public static final ExecutionStatus AWAITING_NJE_TRANSMISSION
JES execution status for a job that is awaiting Network Job Entry (NJE) transmission.- Since:
- 2.2.0
-
TRANSITION_PHASE
public static final ExecutionStatus TRANSITION_PHASE
JES execution status for a job that is in a transition phase.- Since:
- 2.2.0
-
-
Method Detail
-
values
public static ExecutionStatus[] 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 (ExecutionStatus c : ExecutionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutionStatus 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
-
-