Package com.carfey.ops.api.enums
Enum JobStatisticsStatus
- java.lang.Object
-
- java.lang.Enum<JobStatisticsStatus>
-
- com.carfey.ops.api.enums.JobStatisticsStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JobStatisticsStatus>
public enum JobStatisticsStatus extends java.lang.Enum<JobStatisticsStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABANDONEDCHAIN_SKIPPEDCOMPLETEDCONFLICT_MISSEDDIEDFAILEDMISSEDOVERLAPPED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JobStatisticsStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JobStatisticsStatusvalueOfJobStatisticsStatus(java.lang.String val)static JobStatisticsStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLETED
public static final JobStatisticsStatus COMPLETED
-
FAILED
public static final JobStatisticsStatus FAILED
-
MISSED
public static final JobStatisticsStatus MISSED
-
DIED
public static final JobStatisticsStatus DIED
-
OVERLAPPED
public static final JobStatisticsStatus OVERLAPPED
-
ABANDONED
public static final JobStatisticsStatus ABANDONED
-
CHAIN_SKIPPED
public static final JobStatisticsStatus CHAIN_SKIPPED
-
CONFLICT_MISSED
public static final JobStatisticsStatus CONFLICT_MISSED
-
-
Method Detail
-
values
public static JobStatisticsStatus[] 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 (JobStatisticsStatus c : JobStatisticsStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobStatisticsStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
valueOfJobStatisticsStatus
public static JobStatisticsStatus valueOfJobStatisticsStatus(java.lang.String val)
-
-