Enum StaticHelper.LED_ID
- java.lang.Object
-
- java.lang.Enum<StaticHelper.LED_ID>
-
- org.apache.plc4x.java.s7.readwrite.utils.StaticHelper.LED_ID
-
- All Implemented Interfaces:
Serializable,Comparable<StaticHelper.LED_ID>
- Enclosing class:
- StaticHelper
public static enum StaticHelper.LED_ID extends Enum<StaticHelper.LED_ID>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCode()StringgetDescription()static StaticHelper.LED_IDvalueOf(int code)Returns the enum constant of this type with the specified name.static StaticHelper.LED_IDvalueOf(String name)Returns the enum constant of this type with the specified name.static StaticHelper.LED_ID[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SF
public static final StaticHelper.LED_ID SF
-
INTF
public static final StaticHelper.LED_ID INTF
-
EXTF
public static final StaticHelper.LED_ID EXTF
-
RUN
public static final StaticHelper.LED_ID RUN
-
STOP
public static final StaticHelper.LED_ID STOP
-
FRCE
public static final StaticHelper.LED_ID FRCE
-
CRST
public static final StaticHelper.LED_ID CRST
-
BAF
public static final StaticHelper.LED_ID BAF
-
USR
public static final StaticHelper.LED_ID USR
-
USR1
public static final StaticHelper.LED_ID USR1
-
BUS1F
public static final StaticHelper.LED_ID BUS1F
-
BUS2F
public static final StaticHelper.LED_ID BUS2F
-
REDF
public static final StaticHelper.LED_ID REDF
-
MSTR
public static final StaticHelper.LED_ID MSTR
-
RACK0
public static final StaticHelper.LED_ID RACK0
-
RACK1
public static final StaticHelper.LED_ID RACK1
-
RACK2
public static final StaticHelper.LED_ID RACK2
-
IFM1F
public static final StaticHelper.LED_ID IFM1F
-
IFM2F
public static final StaticHelper.LED_ID IFM2F
-
BUS3F
public static final StaticHelper.LED_ID BUS3F
-
MAINT
public static final StaticHelper.LED_ID MAINT
-
DC24V
public static final StaticHelper.LED_ID DC24V
-
BUS5F
public static final StaticHelper.LED_ID BUS5F
-
BUS8F
public static final StaticHelper.LED_ID BUS8F
-
IF
public static final StaticHelper.LED_ID IF
-
UF
public static final StaticHelper.LED_ID UF
-
MF
public static final StaticHelper.LED_ID MF
-
CF
public static final StaticHelper.LED_ID CF
-
TF
public static final StaticHelper.LED_ID TF
-
APPL_STATE_RED
public static final StaticHelper.LED_ID APPL_STATE_RED
-
APPL_STATE_GREEN
public static final StaticHelper.LED_ID APPL_STATE_GREEN
-
-
Method Detail
-
values
public static StaticHelper.LED_ID[] 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.LED_ID c : StaticHelper.LED_ID.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.LED_ID 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.LED_ID 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
-
-