|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.wimpi.modbus.msg.ModbusMessageImpl net.wimpi.modbus.msg.ModbusResponse net.wimpi.modbus.msg.ReadInputDiscretesResponse
public final class ReadInputDiscretesResponse
Class implementing a ReadInputDiscretesResponse. The implementation directly correlates with the class 1 function read input discretes (FC 2). It encapsulates the corresponding response message.
Input Discretes are understood as bits that cannot be manipulated (i.e. set or unset).
Constructor Summary | |
---|---|
ReadInputDiscretesResponse()
Constructs a new ReadInputDiscretesResponse instance. |
|
ReadInputDiscretesResponse(int count)
Constructs a new ReadInputDiscretesResponse instance with a given count of input discretes (i.e. |
Method Summary | |
---|---|
int |
getBitCount()
Returns the number of bits (i.e. |
BitVector |
getDiscretes()
Returns the BitVector that stores the collection of bits that have been read. |
boolean |
getDiscreteStatus(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 |
setBitCount(int count)
Sets the number of bits in this response. |
void |
setDiscreteStatus(int index,
boolean b)
Sets the status of the given input discrete. |
void |
writeData(DataOutput dout)
Writes the subclass specific data to the given DataOutput. |
Methods inherited from class net.wimpi.modbus.msg.ModbusResponse |
---|
createModbusResponse |
Methods inherited from class net.wimpi.modbus.msg.ModbusMessageImpl |
---|
getDataLength, getFunctionCode, getHexMessage, getOutputLength, getProtocolID, getTransactionID, getUnitID, isHeadless, readFrom, setDataLength, setHeadless, setProtocolID, setTransactionID, setUnitID, writeTo |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ReadInputDiscretesResponse()
public ReadInputDiscretesResponse(int count)
count
- the number of bits to be read.Method Detail |
---|
public int getBitCount()
public void setBitCount(int count)
count
- the number of response bits as int.public BitVector getDiscretes()
public boolean getDiscreteStatus(int index) throws IndexOutOfBoundsException
index
- the index of the input discrete
for which the status should be returned.
IndexOutOfBoundsException
- if the
index is out of boundspublic void setDiscreteStatus(int index, boolean b) throws IndexOutOfBoundsException
index
- the index of the input discrete to be set.b
- true if to be set, false if to be reset.
IndexOutOfBoundsException
- if the given index exceeds bounds.public void writeData(DataOutput dout) throws IOException
ModbusMessageImpl
writeData
in class ModbusMessageImpl
dout
- the DataOutput to be written to.
IOException
- if an I/O related error occurs.public void readData(DataInput din) throws IOException
ModbusMessageImpl
readData
in class ModbusMessageImpl
din
- the DataInput to read from.
IOException
- if an I/O related error occurs.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |