|
JBoss Marshalling 1.4.3.Final | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.InputStream
org.jboss.marshalling.SimpleByteInput
org.jboss.marshalling.ByteInputStream
org.jboss.marshalling.SimpleDataInput
public class SimpleDataInput

A simple base implementation of DataInput which wraps a ByteInput. This implementation maintains
an internal buffer.
| Field Summary | |
|---|---|
protected byte[] |
buffer
The internal buffer. |
protected int |
limit
The buffer limit. |
protected int |
position
The buffer position. |
| Fields inherited from class org.jboss.marshalling.ByteInputStream |
|---|
byteInput |
| Constructor Summary | |
|---|---|
SimpleDataInput(ByteInput byteInput)
Construct a new instance. |
|
SimpleDataInput(int bufferSize)
Construct a new instance which wraps nothing. |
|
SimpleDataInput(int bufferSize,
ByteInput byteInput)
Construct a new instance. |
|
| Method Summary | |
|---|---|
int |
available()
Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next invocation of a method for this input stream. |
void |
close()
|
protected void |
finish()
Finish reading from the current input. |
int |
read()
Reads the next byte of data from the input stream. |
int |
read(byte[] b)
Read some bytes from the input stream into the given array. |
int |
read(byte[] b,
int off,
int len)
Read some bytes from the input stream into the given array. |
boolean |
readBoolean()
|
byte |
readByte()
|
char |
readChar()
|
double |
readDouble()
|
float |
readFloat()
|
void |
readFully(byte[] b)
|
void |
readFully(byte[] b,
int off,
int len)
|
int |
readInt()
|
protected int |
readIntDirect()
Read an int value. |
String |
readLine()
|
long |
readLong()
|
protected long |
readLongDirect()
|
short |
readShort()
|
int |
readUnsignedByte()
|
protected int |
readUnsignedByteDirect()
Read an unsigned byte directly. |
int |
readUnsignedShort()
|
String |
readUTF()
|
long |
skip(long n)
Skips over and discards up to n bytes of data from this input stream. |
int |
skipBytes(int n)
|
protected void |
start(ByteInput byteInput)
Start reading from the given input. |
| Methods inherited from class java.io.InputStream |
|---|
mark, markSupported, reset |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected final byte[] buffer
protected int position
protected int limit
| Constructor Detail |
|---|
public SimpleDataInput(int bufferSize)
bufferSize - the internal buffer size to use
public SimpleDataInput(int bufferSize,
ByteInput byteInput)
bufferSize - the internal buffer size to usebyteInput - the byte input to initially wrappublic SimpleDataInput(ByteInput byteInput)
byteInput - the byte input to initially wrap| Method Detail |
|---|
public int read()
throws IOException
read in interface ByteInputread in class ByteInputStreamIOException - if an error occurs
public int read(byte[] b)
throws IOException
read in interface ByteInputread in class ByteInputStreamb - the destination array
IOException - if an error occurs
public int read(byte[] b,
int off,
int len)
throws IOException
read in interface ByteInputread in class ByteInputStreamb - the destination arrayoff - the offset into the array into which data should be readlen - the number of bytes to attempt to fill in the destination array
IOException - if an error occurs
public long skip(long n)
throws IOException
n bytes of data from this input stream. If the end of stream is reached,
this method returns 0 in order to be consistent with InputStream.skip(long).
skip in interface ByteInputskip in class ByteInputStreamn - the number of bytes to attempt to skip
IOException - if an error occurs
public int available()
throws IOException
available in interface ByteInputavailable in class ByteInputStreamIOException - if an error occurs
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
protected int readUnsignedByteDirect()
throws IOException
IOException - if an error occurs
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
protected long readLongDirect()
throws IOException
IOException
public float readFloat()
throws IOException
readFloat in interface DataInputIOException
protected int readIntDirect()
throws IOException
IOException - if an error occurs
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
public void close()
throws IOException
close in interface Closeableclose in class ByteInputStreamIOException
protected void start(ByteInput byteInput)
throws IOException
byteInput - the new input from which to read
IOException - not thrown by this implementation, but may be overridden to be thrown if a problem occurs
protected void finish()
throws IOException
IOException - not thrown by this implementation, but may be overridden to be thrown if a problem occurs
|
JBoss Marshalling 1.4.3.Final | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||