|
||||||||||
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
public class BytesInputStream
Class implementing a byte array input stream with a DataInput interface.
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()
|
boolean |
readBoolean()
|
byte |
readByte()
|
char |
readChar()
|
double |
readDouble()
|
float |
readFloat()
|
void |
readFully(byte[] b)
|
void |
readFully(byte[] b,
int off,
int len)
|
int |
readInt()
|
String |
readLine()
|
long |
readLong()
|
short |
readShort()
|
int |
readUnsignedByte()
|
int |
readUnsignedShort()
|
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, close, getPosition, mark, markSupported, read, read, read, reset, size, skip |
Methods inherited from class java.lang.Object |
---|
equals, 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()
getBuffer
in class FastByteArrayInputStream
public int getBufferLength()
public void readFully(byte[] b) throws IOException
readFully
in interface DataInput
IOException
public void readFully(byte[] b, int off, int len) throws IOException
readFully
in interface DataInput
IOException
public int skipBytes(int n) throws IOException
skipBytes
in interface DataInput
IOException
public boolean readBoolean() throws IOException
readBoolean
in interface DataInput
IOException
public byte readByte() throws IOException
readByte
in interface DataInput
IOException
public int readUnsignedByte() throws IOException
readUnsignedByte
in interface DataInput
IOException
public short readShort() throws IOException
readShort
in interface DataInput
IOException
public int readUnsignedShort() throws IOException
readUnsignedShort
in interface DataInput
IOException
public char readChar() throws IOException
readChar
in interface DataInput
IOException
public int readInt() throws IOException
readInt
in interface DataInput
IOException
public long readLong() throws IOException
readLong
in interface DataInput
IOException
public float readFloat() throws IOException
readFloat
in interface DataInput
IOException
public double readDouble() throws IOException
readDouble
in interface DataInput
IOException
public String readLine() throws IOException
readLine
in interface DataInput
IOException
public String readUTF() throws IOException
readUTF
in interface DataInput
IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |