Enum SimulatedDataTypeSizes
- java.lang.Object
-
- java.lang.Enum<SimulatedDataTypeSizes>
-
- org.apache.plc4x.java.simulated.readwrite.SimulatedDataTypeSizes
-
- All Implemented Interfaces:
Serializable,Comparable<SimulatedDataTypeSizes>
public enum SimulatedDataTypeSizes extends Enum<SimulatedDataTypeSizes>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SimulatedDataTypeSizesenumForValue(short value)static List<SimulatedDataTypeSizes>enumsForFieldDataTypeSize(short fieldValue)static SimulatedDataTypeSizesfirstEnumForFieldDataTypeSize(short fieldValue)shortgetDataTypeSize()shortgetValue()static BooleanisDefined(short value)static SimulatedDataTypeSizesvalueOf(String name)Returns the enum constant of this type with the specified name.static SimulatedDataTypeSizes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOL
public static final SimulatedDataTypeSizes BOOL
-
BYTE
public static final SimulatedDataTypeSizes BYTE
-
WORD
public static final SimulatedDataTypeSizes WORD
-
DWORD
public static final SimulatedDataTypeSizes DWORD
-
LWORD
public static final SimulatedDataTypeSizes LWORD
-
SINT
public static final SimulatedDataTypeSizes SINT
-
INT
public static final SimulatedDataTypeSizes INT
-
DINT
public static final SimulatedDataTypeSizes DINT
-
LINT
public static final SimulatedDataTypeSizes LINT
-
USINT
public static final SimulatedDataTypeSizes USINT
-
UINT
public static final SimulatedDataTypeSizes UINT
-
UDINT
public static final SimulatedDataTypeSizes UDINT
-
ULINT
public static final SimulatedDataTypeSizes ULINT
-
REAL
public static final SimulatedDataTypeSizes REAL
-
LREAL
public static final SimulatedDataTypeSizes LREAL
-
TIME
public static final SimulatedDataTypeSizes TIME
-
LTIME
public static final SimulatedDataTypeSizes LTIME
-
DATE
public static final SimulatedDataTypeSizes DATE
-
LDATE
public static final SimulatedDataTypeSizes LDATE
-
TIME_OF_DAY
public static final SimulatedDataTypeSizes TIME_OF_DAY
-
LTIME_OF_DAY
public static final SimulatedDataTypeSizes LTIME_OF_DAY
-
DATE_AND_TIME
public static final SimulatedDataTypeSizes DATE_AND_TIME
-
LDATE_AND_TIME
public static final SimulatedDataTypeSizes LDATE_AND_TIME
-
CHAR
public static final SimulatedDataTypeSizes CHAR
-
WCHAR
public static final SimulatedDataTypeSizes WCHAR
-
STRING
public static final SimulatedDataTypeSizes STRING
-
WSTRING
public static final SimulatedDataTypeSizes WSTRING
-
-
Method Detail
-
values
public static SimulatedDataTypeSizes[] 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 (SimulatedDataTypeSizes c : SimulatedDataTypeSizes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimulatedDataTypeSizes 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()
-
getDataTypeSize
public short getDataTypeSize()
-
firstEnumForFieldDataTypeSize
public static SimulatedDataTypeSizes firstEnumForFieldDataTypeSize(short fieldValue)
-
enumsForFieldDataTypeSize
public static List<SimulatedDataTypeSizes> enumsForFieldDataTypeSize(short fieldValue)
-
enumForValue
public static SimulatedDataTypeSizes enumForValue(short value)
-
isDefined
public static Boolean isDefined(short value)
-
-