Package org.cip4.jdflib.core
Enum JDFNodeInfo.eJobPhaseStatus
- java.lang.Object
-
- java.lang.Enum<JDFNodeInfo.eJobPhaseStatus>
-
- org.cip4.jdflib.core.JDFNodeInfo.eJobPhaseStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JDFNodeInfo.eJobPhaseStatus>
- Enclosing class:
- JDFNodeInfo
public static enum JDFNodeInfo.eJobPhaseStatus extends java.lang.Enum<JDFNodeInfo.eJobPhaseStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JDFNodeInfo.eJobPhaseStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JDFNodeInfo.eJobPhaseStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Aborted
public static final JDFNodeInfo.eJobPhaseStatus Aborted
-
Cleanup
public static final JDFNodeInfo.eJobPhaseStatus Cleanup
-
Completed
public static final JDFNodeInfo.eJobPhaseStatus Completed
-
InProress
public static final JDFNodeInfo.eJobPhaseStatus InProress
-
Setup
public static final JDFNodeInfo.eJobPhaseStatus Setup
-
Stopped
public static final JDFNodeInfo.eJobPhaseStatus Stopped
-
Suspended
public static final JDFNodeInfo.eJobPhaseStatus Suspended
-
Waiting
public static final JDFNodeInfo.eJobPhaseStatus Waiting
-
-
Method Detail
-
values
public static JDFNodeInfo.eJobPhaseStatus[] 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 (JDFNodeInfo.eJobPhaseStatus c : JDFNodeInfo.eJobPhaseStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JDFNodeInfo.eJobPhaseStatus 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
-
-