Enum StaticHelper.MODULE
- java.lang.Object
-
- java.lang.Enum<StaticHelper.MODULE>
-
- org.apache.plc4x.java.s7.readwrite.utils.StaticHelper.MODULE
-
- All Implemented Interfaces:
Serializable,Comparable<StaticHelper.MODULE>
- Enclosing class:
- StaticHelper
public static enum StaticHelper.MODULE extends Enum<StaticHelper.MODULE>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCode()static StaticHelper.MODULEvalueOf(String name)Returns the enum constant of this type with the specified name.static StaticHelper.MODULE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPU
public static final StaticHelper.MODULE CPU
-
IM
public static final StaticHelper.MODULE IM
-
FM
public static final StaticHelper.MODULE FM
-
CP
public static final StaticHelper.MODULE CP
-
-
Method Detail
-
values
public static StaticHelper.MODULE[] 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.MODULE c : StaticHelper.MODULE.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.MODULE 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()
-
-