Enum StaticHelper.OB
- java.lang.Object
-
- java.lang.Enum<StaticHelper.OB>
-
- org.apache.plc4x.java.s7.readwrite.utils.StaticHelper.OB
-
- All Implemented Interfaces:
Serializable,Comparable<StaticHelper.OB>
- Enclosing class:
- StaticHelper
public static enum StaticHelper.OB extends Enum<StaticHelper.OB>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCode()StringgetDescription()static StaticHelper.OBvalueOf(int code)Returns the enum constant of this type with the specified name.static StaticHelper.OBvalueOf(String name)Returns the enum constant of this type with the specified name.static StaticHelper.OB[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FREE_CYC
public static final StaticHelper.OB FREE_CYC
-
TOD_INT0
public static final StaticHelper.OB TOD_INT0
-
TOD_INT1
public static final StaticHelper.OB TOD_INT1
-
TOD_INT2
public static final StaticHelper.OB TOD_INT2
-
TOD_INT3
public static final StaticHelper.OB TOD_INT3
-
TOD_INT4
public static final StaticHelper.OB TOD_INT4
-
TOD_INT5
public static final StaticHelper.OB TOD_INT5
-
TOD_INT6
public static final StaticHelper.OB TOD_INT6
-
TOD_INT7
public static final StaticHelper.OB TOD_INT7
-
DEL_INT0
public static final StaticHelper.OB DEL_INT0
-
DEL_INT1
public static final StaticHelper.OB DEL_INT1
-
DEL_INT2
public static final StaticHelper.OB DEL_INT2
-
DEL_INT3
public static final StaticHelper.OB DEL_INT3
-
CYC_INT0
public static final StaticHelper.OB CYC_INT0
-
CYC_INT1
public static final StaticHelper.OB CYC_INT1
-
CYC_INT2
public static final StaticHelper.OB CYC_INT2
-
CYC_INT3
public static final StaticHelper.OB CYC_INT3
-
CYC_INT4
public static final StaticHelper.OB CYC_INT4
-
CYC_INT5
public static final StaticHelper.OB CYC_INT5
-
CYC_INT6
public static final StaticHelper.OB CYC_INT6
-
CYC_INT7
public static final StaticHelper.OB CYC_INT7
-
CYC_INT8
public static final StaticHelper.OB CYC_INT8
-
HW_INT0
public static final StaticHelper.OB HW_INT0
-
HW_INT1
public static final StaticHelper.OB HW_INT1
-
HW_INT2
public static final StaticHelper.OB HW_INT2
-
HW_INT3
public static final StaticHelper.OB HW_INT3
-
HW_INT4
public static final StaticHelper.OB HW_INT4
-
HW_INT5
public static final StaticHelper.OB HW_INT5
-
HW_INT6
public static final StaticHelper.OB HW_INT6
-
HW_INT7
public static final StaticHelper.OB HW_INT7
-
BACKGROUND
public static final StaticHelper.OB BACKGROUND
-
COMPLETE_RESTART
public static final StaticHelper.OB COMPLETE_RESTART
-
RESTART
public static final StaticHelper.OB RESTART
-
COLD_RESTART
public static final StaticHelper.OB COLD_RESTART
-
CYC_FLT
public static final StaticHelper.OB CYC_FLT
-
PS_FLT
public static final StaticHelper.OB PS_FLT
-
IO_FLT1
public static final StaticHelper.OB IO_FLT1
-
IO_FLT2
public static final StaticHelper.OB IO_FLT2
-
CPU_FLT
public static final StaticHelper.OB CPU_FLT
-
OBNL_FLT
public static final StaticHelper.OB OBNL_FLT
-
RACK_FLT
public static final StaticHelper.OB RACK_FLT
-
COMM_FLT
public static final StaticHelper.OB COMM_FLT
-
BREAKUP_ERR
public static final StaticHelper.OB BREAKUP_ERR
-
SYNC_ERR
public static final StaticHelper.OB SYNC_ERR
-
PROG_ERR
public static final StaticHelper.OB PROG_ERR
-
MOD_ERR
public static final StaticHelper.OB MOD_ERR
-
-
Method Detail
-
values
public static StaticHelper.OB[] 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 (StaticHelper.OB c : StaticHelper.OB.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StaticHelper.OB 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
-
getCode
public int getCode()
-
getDescription
public String getDescription()
-
valueOf
public static StaticHelper.OB valueOf(int code)
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:
code- 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
-
-