public class ExtendedByteArrayDataInput extends ByteArrayInputStream implements ExtendedDataInput
buf, count, mark, pos| Constructor and Description |
|---|
ExtendedByteArrayDataInput(byte[] buf)
Constructor
|
ExtendedByteArrayDataInput(byte[] buf,
int offset,
int length)
Get access to portion of a byte array
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
endOfInput()
Check if we read everything from the input
|
int |
getPos()
Get the position of what has been 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() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
int |
skipBytes(int n) |
available, close, mark, markSupported, read, read, reset, skipreadclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitavailablepublic ExtendedByteArrayDataInput(byte[] buf)
buf - Buffer to readpublic ExtendedByteArrayDataInput(byte[] buf,
int offset,
int length)
buf - Byte array to accessoffset - Offset into the byte arraylength - Length to readpublic int getPos()
ExtendedDataInputgetPos in interface ExtendedDataInputpublic boolean endOfInput()
ExtendedDataInputendOfInput in interface ExtendedDataInputpublic void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOExceptionpublic int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionpublic boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionpublic byte readByte()
throws IOException
readByte in interface DataInputIOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic short readShort()
throws IOException
readShort in interface DataInputIOExceptionpublic int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionpublic char readChar()
throws IOException
readChar in interface DataInputIOExceptionpublic int readInt()
throws IOException
readInt in interface DataInputIOExceptionpublic long readLong()
throws IOException
readLong in interface DataInputIOExceptionpublic float readFloat()
throws IOException
readFloat in interface DataInputIOExceptionpublic double readDouble()
throws IOException
readDouble in interface DataInputIOExceptionpublic String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic String readUTF() throws IOException
readUTF in interface DataInputIOExceptionCopyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.