public interface IPositionInputStream extends DataInput
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
mark(int readLimit) |
boolean |
markSupported() |
long |
position() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
long |
readID(int idSize) |
int |
readInt() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
long |
readUnsignedInt() |
int |
readUnsignedShort() |
String |
readUTF() |
void |
reset() |
void |
seek(long pos) |
long |
skip(long n) |
int |
skipBytes(int n) |
int |
skipBytes(long n) |
int read() throws IOException
IOExceptionint read(byte[] b,
int off,
int len)
throws IOException
IOExceptionlong skip(long n) throws IOException
IOExceptionboolean markSupported()
void mark(int readLimit)
void reset()
throws IOException
IOExceptionint skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionint skipBytes(long n)
throws IOException
IOExceptionvoid readFully(byte[] b)
throws IOException
readFully in interface DataInputIOExceptionvoid readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOExceptionlong position()
void seek(long pos) throws IOException
IOExceptionint readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionint readInt()
throws IOException
readInt in interface DataInputIOExceptionlong readLong()
throws IOException
readLong in interface DataInputIOExceptionboolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionbyte readByte()
throws IOException
readByte in interface DataInputIOExceptionchar readChar()
throws IOException
readChar in interface DataInputIOExceptiondouble readDouble()
throws IOException
readDouble in interface DataInputIOExceptionfloat readFloat()
throws IOException
readFloat in interface DataInputIOExceptionString readLine() throws IOException
readLine in interface DataInputIOExceptionshort readShort()
throws IOException
readShort in interface DataInputIOExceptionString readUTF() throws IOException
readUTF in interface DataInputIOExceptionint readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionlong readUnsignedInt()
throws IOException
IOExceptionlong readID(int idSize)
throws IOException
IOExceptionvoid close()
throws IOException
IOException