public enum ModbusExceptions extends java.lang.Enum<ModbusExceptions>
| Enum Constant and Description |
|---|
Acknowledge |
GatewayPathUnavailable |
GatewayTargetDeviceFailedToRespond |
IllegalDataAddress |
IllegalDataValue |
IllegalFunction |
InvalidResponseCode |
MemoryParityError |
NegativeAcknowledge |
Ok |
ServerDeviceBusy |
ServerDeviceFailure |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static ModbusExceptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModbusExceptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModbusExceptions Ok
public static final ModbusExceptions IllegalFunction
public static final ModbusExceptions IllegalDataAddress
public static final ModbusExceptions IllegalDataValue
public static final ModbusExceptions ServerDeviceFailure
public static final ModbusExceptions Acknowledge
public static final ModbusExceptions ServerDeviceBusy
public static final ModbusExceptions NegativeAcknowledge
public static final ModbusExceptions MemoryParityError
public static final ModbusExceptions GatewayPathUnavailable
public static final ModbusExceptions GatewayTargetDeviceFailedToRespond
public static final ModbusExceptions InvalidResponseCode
public static final ModbusExceptions Unknown
public static ModbusExceptions[] values()
for (ModbusExceptions c : ModbusExceptions.values()) System.out.println(c);
public static ModbusExceptions valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullaQute SARL All Rights Reserved