Enum ModbusDeviceInformationMoreFollows
- java.lang.Object
-
- java.lang.Enum<ModbusDeviceInformationMoreFollows>
-
- org.apache.plc4x.java.modbus.readwrite.ModbusDeviceInformationMoreFollows
-
- All Implemented Interfaces:
Serializable,Comparable<ModbusDeviceInformationMoreFollows>
public enum ModbusDeviceInformationMoreFollows extends Enum<ModbusDeviceInformationMoreFollows>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MORE_OBJECTS_AVAILABLENO_MORE_OBJECTS_AVAILABLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ModbusDeviceInformationMoreFollowsenumForValue(short value)shortgetValue()static BooleanisDefined(short value)static ModbusDeviceInformationMoreFollowsvalueOf(String name)Returns the enum constant of this type with the specified name.static ModbusDeviceInformationMoreFollows[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_MORE_OBJECTS_AVAILABLE
public static final ModbusDeviceInformationMoreFollows NO_MORE_OBJECTS_AVAILABLE
-
MORE_OBJECTS_AVAILABLE
public static final ModbusDeviceInformationMoreFollows MORE_OBJECTS_AVAILABLE
-
-
Method Detail
-
values
public static ModbusDeviceInformationMoreFollows[] 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 (ModbusDeviceInformationMoreFollows c : ModbusDeviceInformationMoreFollows.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModbusDeviceInformationMoreFollows 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 ModbusDeviceInformationMoreFollows enumForValue(short value)
-
isDefined
public static Boolean isDefined(short value)
-
-