Package org.cip4.jdflib.extensions
Enum XJDFEnums.eDeviceStatus
- java.lang.Object
-
- java.lang.Enum<XJDFEnums.eDeviceStatus>
-
- org.cip4.jdflib.extensions.XJDFEnums.eDeviceStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<XJDFEnums.eDeviceStatus>
- Enclosing class:
- XJDFEnums
public static enum XJDFEnums.eDeviceStatus extends java.lang.Enum<XJDFEnums.eDeviceStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CleanupIdleNonProductiveOfflineProductionSetupStopped
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static XJDFEnums.eDeviceStatusgetEnum(java.lang.String val)java.lang.StringgetJDFVal()static XJDFEnums.eDeviceStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static XJDFEnums.eDeviceStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Cleanup
public static final XJDFEnums.eDeviceStatus Cleanup
-
Idle
public static final XJDFEnums.eDeviceStatus Idle
-
NonProductive
public static final XJDFEnums.eDeviceStatus NonProductive
-
Offline
public static final XJDFEnums.eDeviceStatus Offline
-
Production
public static final XJDFEnums.eDeviceStatus Production
-
Setup
public static final XJDFEnums.eDeviceStatus Setup
-
Stopped
public static final XJDFEnums.eDeviceStatus Stopped
-
-
Method Detail
-
values
public static XJDFEnums.eDeviceStatus[] 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 (XJDFEnums.eDeviceStatus c : XJDFEnums.eDeviceStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XJDFEnums.eDeviceStatus 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
-
getEnum
public static XJDFEnums.eDeviceStatus getEnum(java.lang.String val)
-
getJDFVal
public java.lang.String getJDFVal()
-
-