|
jamod at SF | |||||||||
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
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. bits). |
Method Summary | |
int |
getBitCount()
Returns the number of bits (i.e. input discretes) read with the request. |
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(java.io.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(java.io.DataOutput dout)
Writes the subclass specific data to the given DataOutput. |
Methods inherited from class net.wimpi.modbus.msg.ModbusResponse |
createModbusResponse, setMessage |
Methods inherited from class net.wimpi.modbus.msg.ModbusMessageImpl |
getDataLength, getFunctionCode, getHexMessage, getOutputLength, getProtocolID, getTransactionID, getUnitID, isHeadless, readFrom, setDataLength, setFunctionCode, setHeadless, setHeadless, setProtocolID, setTransactionID, setUnitID, writeTo |
Methods inherited from class java.lang.Object |
clone, equals, finalize, 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 java.lang.IndexOutOfBoundsException
index
- the index of the input discrete
for which the status should be returned.
java.lang.IndexOutOfBoundsException
- if the
index is out of boundspublic void setDiscreteStatus(int index, boolean b) throws java.lang.IndexOutOfBoundsException
index
- the index of the input discrete to be set.b
- true if to be set, false if to be reset.
java.lang.IndexOutOfBoundsException
- if the given index exceeds bounds.public void writeData(java.io.DataOutput dout) throws java.io.IOException
ModbusMessageImpl
writeData
in class ModbusMessageImpl
dout
- the DataOutput to be written to.
java.io.IOException
- if an I/O related error occurs.public void readData(java.io.DataInput din) throws java.io.IOException
ModbusMessageImpl
readData
in class ModbusMessageImpl
din
- the DataInput to read from.
java.io.IOException
- if an I/O related error occurs.
|
jamod at SF | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |