Package org.apache.plc4x.java.s7.events
Enum S7CyclicEvent.Fields
- java.lang.Object
-
- java.lang.Enum<S7CyclicEvent.Fields>
-
- org.apache.plc4x.java.s7.events.S7CyclicEvent.Fields
-
- All Implemented Interfaces:
Serializable,Comparable<S7CyclicEvent.Fields>
- Enclosing class:
- S7CyclicEvent
public static enum S7CyclicEvent.Fields extends Enum<S7CyclicEvent.Fields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_ITEMSCOUNTJOBIDMAPREQUESTRETURNCODE_TIMESTAMPTRANSPORTSIZE_TYPE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static S7CyclicEvent.FieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static S7CyclicEvent.Fields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE
public static final S7CyclicEvent.Fields TYPE
-
JOBID
public static final S7CyclicEvent.Fields JOBID
-
TIMESTAMP
public static final S7CyclicEvent.Fields TIMESTAMP
-
ITEMSCOUNT
public static final S7CyclicEvent.Fields ITEMSCOUNT
-
REQUEST
public static final S7CyclicEvent.Fields REQUEST
-
MAP
public static final S7CyclicEvent.Fields MAP
-
RETURNCODE_
public static final S7CyclicEvent.Fields RETURNCODE_
-
TRANSPORTSIZE_
public static final S7CyclicEvent.Fields TRANSPORTSIZE_
-
DATA_
public static final S7CyclicEvent.Fields DATA_
-
-
Method Detail
-
values
public static S7CyclicEvent.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 (S7CyclicEvent.Fields c : S7CyclicEvent.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 S7CyclicEvent.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
-
-