Package org.apache.plc4x.java.s7.events
Enum S7SysEvent.Fields
- java.lang.Object
-
- java.lang.Enum<S7SysEvent.Fields>
-
- org.apache.plc4x.java.s7.events.S7SysEvent.Fields
-
- All Implemented Interfaces:
Serializable,Comparable<S7SysEvent.Fields>
- Enclosing class:
- S7SysEvent
public static enum S7SysEvent.Fields extends Enum<S7SysEvent.Fields>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static S7SysEvent.FieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static S7SysEvent.Fields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TIMESTAMP
public static final S7SysEvent.Fields TIMESTAMP
-
TYPE
public static final S7SysEvent.Fields TYPE
-
EVENT_ID
public static final S7SysEvent.Fields EVENT_ID
-
PRIORITY_CLASS
public static final S7SysEvent.Fields PRIORITY_CLASS
-
OB_NUMBER
public static final S7SysEvent.Fields OB_NUMBER
-
DAT_ID
public static final S7SysEvent.Fields DAT_ID
-
INFO1
public static final S7SysEvent.Fields INFO1
-
INFO2
public static final S7SysEvent.Fields INFO2
-
-
Method Detail
-
values
public static S7SysEvent.Fields[] 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 (S7SysEvent.Fields c : S7SysEvent.Fields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static S7SysEvent.Fields 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
-
-