public final class ReadCoilsResponse extends ModbusResponse
Coils are understood as bits that can be manipulated (i.e. set or unset).
| Constructor and Description |
|---|
ReadCoilsResponse()
Constructs a new ReadCoilsResponse
instance.
|
ReadCoilsResponse(int count)
Constructs a new ReadCoilsResponse
instance with a given count of coils (i.e. bits).
|
| Modifier and Type | Method and Description |
|---|---|
int |
getBitCount()
Returns the number of bits (i.e. coils)
read with the request.
|
BitVector |
getCoils()
Returns the BitVector that stores
the collection of bits that have been read.
|
boolean |
getCoilStatus(int index)
Convenience method that returns the state
of the bit at the given index.
|
void |
readData(DataInput din)
Reads the subclass specific data from the given DataInput instance.
|
void |
setCoilStatus(int index,
boolean b)
Sets the status of the given coil.
|
void |
writeData(DataOutput dout)
Writes the subclass specific data to the given DataOutput.
|
createModbusResponse, setMessagegetDataLength, getFunctionCode, getHexMessage, getOutputLength, getProtocolID, getTransactionID, getUnitID, isHeadless, readFrom, setDataLength, setFunctionCode, setHeadless, setHeadless, setProtocolID, setTransactionID, setUnitID, writeTopublic ReadCoilsResponse()
public ReadCoilsResponse(int count)
count - the number of bits to be read.public int getBitCount()
public BitVector getCoils()
public boolean getCoilStatus(int index)
throws IndexOutOfBoundsException
index - the index of the coil for which the status should be returned.IndexOutOfBoundsException - if the index is out of boundspublic void setCoilStatus(int index,
boolean b)
index - the index of the coil to be set.b - true if to be set, false for reset.public void writeData(DataOutput dout) throws IOException
ModbusMessageImplwriteData in class ModbusMessageImpldout - the DataOutput to be written to.IOException - if an I/O related error occurs.public void readData(DataInput din) throws IOException
ModbusMessageImplreadData in class ModbusMessageImpldin - the DataInput to read from.IOException - if an I/O related error occurs.Copyright © 2017. All rights reserved.