|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.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 FastByteArrayInputStreampublic int getBufferLength()
public void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOException
public void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOException
public int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOException
public boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOException
public byte readByte()
throws IOException
readByte in interface DataInputIOException
public int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOException
public short readShort()
throws IOException
readShort in interface DataInputIOException
public int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOException
public char readChar()
throws IOException
readChar in interface DataInputIOException
public int readInt()
throws IOException
readInt in interface DataInputIOException
public long readLong()
throws IOException
readLong in interface DataInputIOException
public float readFloat()
throws IOException
readFloat in interface DataInputIOException
public double readDouble()
throws IOException
readDouble in interface DataInputIOException
public String readLine()
throws IOException
readLine in interface DataInputIOException
public String readUTF()
throws IOException
readUTF in interface DataInputIOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||