Enum SyntaxIdType
- java.lang.Object
-
- java.lang.Enum<SyntaxIdType>
-
- org.apache.plc4x.java.s7.readwrite.SyntaxIdType
-
- All Implemented Interfaces:
Serializable,Comparable<SyntaxIdType>
public enum SyntaxIdType extends Enum<SyntaxIdType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALARM_ACKSETALARM_INDSETALARM_LOCKFREESETALARM_QUERYREQSETDBREADDRIVEESANYNCKNCK_INCHNCK_METRICNOTIFY_INDSETPBC_IDS7ANYSYM1200
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SyntaxIdTypeenumForValue(short value)shortgetValue()static BooleanisDefined(short value)static SyntaxIdTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SyntaxIdType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
S7ANY
public static final SyntaxIdType S7ANY
-
PBC_ID
public static final SyntaxIdType PBC_ID
-
ALARM_LOCKFREESET
public static final SyntaxIdType ALARM_LOCKFREESET
-
ALARM_INDSET
public static final SyntaxIdType ALARM_INDSET
-
ALARM_ACKSET
public static final SyntaxIdType ALARM_ACKSET
-
ALARM_QUERYREQSET
public static final SyntaxIdType ALARM_QUERYREQSET
-
NOTIFY_INDSET
public static final SyntaxIdType NOTIFY_INDSET
-
NCK
public static final SyntaxIdType NCK
-
NCK_METRIC
public static final SyntaxIdType NCK_METRIC
-
NCK_INCH
public static final SyntaxIdType NCK_INCH
-
DRIVEESANY
public static final SyntaxIdType DRIVEESANY
-
SYM1200
public static final SyntaxIdType SYM1200
-
DBREAD
public static final SyntaxIdType DBREAD
-
-
Method Detail
-
values
public static SyntaxIdType[] 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 (SyntaxIdType c : SyntaxIdType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyntaxIdType 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
-
getValue
public short getValue()
-
enumForValue
public static SyntaxIdType enumForValue(short value)
-
isDefined
public static Boolean isDefined(short value)
-
-