Enum StaticHelper.CPU_CHARACTERISTICS
- java.lang.Object
-
- java.lang.Enum<StaticHelper.CPU_CHARACTERISTICS>
-
- org.apache.plc4x.java.s7.readwrite.utils.StaticHelper.CPU_CHARACTERISTICS
-
- All Implemented Interfaces:
Serializable,Comparable<StaticHelper.CPU_CHARACTERISTICS>
- Enclosing class:
- StaticHelper
public static enum StaticHelper.CPU_CHARACTERISTICS extends Enum<StaticHelper.CPU_CHARACTERISTICS>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCode()StringgetDescription()static StaticHelper.CPU_CHARACTERISTICSvalueOf(int code)Returns the enum constant of this type with the specified name.static StaticHelper.CPU_CHARACTERISTICSvalueOf(String name)Returns the enum constant of this type with the specified name.static StaticHelper.CPU_CHARACTERISTICS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CH_0x0000
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0000
-
CH_0x0001
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0001
-
CH_0x0002
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0002
-
CH_0x0100
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0100
-
CH_0x0101
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0101
-
CH_0x0102
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0102
-
CH_0x0103
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0103
-
CH_0x0104
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0104
-
CH_0x0105
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0105
-
CH_0x0106
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0106
-
CH_0x0200
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0200
-
CH_0x0201
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0201
-
CH_0x0202
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0202
-
CH_0x0203
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0203
-
CH_0x0204
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0204
-
CH_0x0205
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0205
-
CH_0x0206
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0206
-
CH_0x0207
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0207
-
CH_0x0208
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0208
-
CH_0x0300
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0300
-
CH_0x0301
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0301
-
CH_0x0302
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0302
-
CH_0x0303
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0303
-
CH_0x0304
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0304
-
CH_0x0305
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0305
-
CH_0x0306
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0306
-
CH_0x0307
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0307
-
CH_0x0308
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0308
-
CH_0x0309
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0309
-
CH_0x030A
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x030A
-
CH_0x030B
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x030B
-
CH_0x030C
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x030C
-
CH_0x030D
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x030D
-
CH_0x030E
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x030E
-
CH_0x030F
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x030F
-
CH_0x0310
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0310
-
CH_0x0311
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0311
-
CH_0x0312
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0312
-
CH_0x0313
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0313
-
CH_0x0314
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0314
-
CH_0x0315
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0315
-
CH_0x0316
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0316
-
CH_0x0317
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0317
-
CH_0x0318
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0318
-
CH_0x0319
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0319
-
CH_0x0401
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0401
-
CH_0x0402
public static final StaticHelper.CPU_CHARACTERISTICS CH_0x0402
-
-
Method Detail
-
values
public static StaticHelper.CPU_CHARACTERISTICS[] 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.CPU_CHARACTERISTICS c : StaticHelper.CPU_CHARACTERISTICS.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.CPU_CHARACTERISTICS 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.CPU_CHARACTERISTICS 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
-
-