|
jamod at SF | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.InputStream net.wimpi.modbus.io.FastByteArrayInputStream net.wimpi.modbus.io.BytesInputStream
Class implementing a byte array input stream with a DataInput interface.
Field Summary |
Fields inherited from class net.wimpi.modbus.io.FastByteArrayInputStream |
buf, count, mark, pos |
Constructor Summary | |
BytesInputStream(byte[] data)
Constructs a new BytesInputStream instance, that will read from the given data. |
|
BytesInputStream(int size)
Constructs a new BytesInputStream instance, with an empty buffer of a given size. |
Method Summary | |
byte[] |
getBuffer()
Returns the reference to the input buffer. |
int |
getBufferLength()
Returns the end of the buffer being read. |
boolean |
readBoolean()
|
byte |
readByte()
|
char |
readChar()
|
double |
readDouble()
|
float |
readFloat()
|
void |
readFully(byte[] b)
|
void |
readFully(byte[] b,
int off,
int len)
|
int |
readInt()
|
java.lang.String |
readLine()
|
long |
readLong()
|
short |
readShort()
|
int |
readUnsignedByte()
|
int |
readUnsignedShort()
|
java.lang.String |
readUTF()
|
void |
reset(byte[] data)
Resets this BytesInputStream using the given byte[] as new input buffer. |
void |
reset(byte[] data,
int length)
Resets this BytesInputStream using the given byte[] as new input buffer and a given length. |
void |
reset(int length)
Resets this BytesInputStream assigning the input buffer a new length. |
int |
skip(int n)
Skips the given number of bytes or all bytes till the end of the assigned input buffer length. |
int |
skipBytes(int n)
|
Methods inherited from class net.wimpi.modbus.io.FastByteArrayInputStream |
available, getBufferBytes, getBufferOffset, mark, markSupported, read, read, read, reset, skip |
Methods inherited from class java.io.InputStream |
close |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public BytesInputStream(int size)
size
- the size of the input buffer.public BytesInputStream(byte[] data)
data
- a byte array containing data to be read.Method Detail |
public void reset(byte[] data)
data
- a byte array with data to be read.public void reset(byte[] data, int length)
data
- a byte array with data to be read.length
- the length of the buffer to be considered.public void reset(int length)
length
- the length of the buffer to be considered.public int skip(int n)
n
- the number of bytes to be skipped as int.
public byte[] getBuffer()
public int getBufferLength()
FastByteArrayInputStream
getBufferLength
in class FastByteArrayInputStream
public void readFully(byte[] b) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public void readFully(byte[] b, int off, int len) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public int skipBytes(int n) throws java.io.IOException
skipBytes
in interface java.io.DataInput
java.io.IOException
public boolean readBoolean() throws java.io.IOException
readBoolean
in interface java.io.DataInput
java.io.IOException
public byte readByte() throws java.io.IOException
readByte
in interface java.io.DataInput
java.io.IOException
public int readUnsignedByte() throws java.io.IOException
readUnsignedByte
in interface java.io.DataInput
java.io.IOException
public short readShort() throws java.io.IOException
readShort
in interface java.io.DataInput
java.io.IOException
public int readUnsignedShort() throws java.io.IOException
readUnsignedShort
in interface java.io.DataInput
java.io.IOException
public char readChar() throws java.io.IOException
readChar
in interface java.io.DataInput
java.io.IOException
public int readInt() throws java.io.IOException
readInt
in interface java.io.DataInput
java.io.IOException
public long readLong() throws java.io.IOException
readLong
in interface java.io.DataInput
java.io.IOException
public float readFloat() throws java.io.IOException
readFloat
in interface java.io.DataInput
java.io.IOException
public double readDouble() throws java.io.IOException
readDouble
in interface java.io.DataInput
java.io.IOException
public java.lang.String readLine() throws java.io.IOException
readLine
in interface java.io.DataInput
java.io.IOException
public java.lang.String readUTF() throws java.io.IOException
readUTF
in interface java.io.DataInput
java.io.IOException
|
jamod at SF | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |