Enum Class ModbusWriteFunctionCode
java.lang.Object
java.lang.Enum<ModbusWriteFunctionCode>
org.openhab.core.io.transport.modbus.ModbusWriteFunctionCode
- All Implemented Interfaces:
Serializable,Comparable<ModbusWriteFunctionCode>,Constable
Modbus write function codes supported by this transport
- Author:
- Sami Salonen - Initial contribution
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic ModbusWriteFunctionCodefromFunctionCode(int functionCode) ConstructModbusWriteFunctionCodefrom the numeric function codeintGet numeric function code represented by this instancestatic ModbusWriteFunctionCodeReturns the enum constant of this class with the specified name.static ModbusWriteFunctionCode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
WRITE_COIL
-
WRITE_MULTIPLE_COILS
-
WRITE_SINGLE_REGISTER
-
WRITE_MULTIPLE_REGISTERS
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getFunctionCode
public int getFunctionCode()Get numeric function code represented by this instance- Returns:
-
fromFunctionCode
public static ModbusWriteFunctionCode fromFunctionCode(int functionCode) throws IllegalArgumentException ConstructModbusWriteFunctionCodefrom the numeric function code- Parameters:
functionCode- numeric function code- Returns:
ModbusWriteFunctionCodematching the numeric function code- Throws:
IllegalArgumentException- with unsupported functions
-