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
IOException
int read(byte[] b, int off, int len) throws IOException
IOException
long skip(long n) throws IOException
IOException
boolean markSupported()
void mark(int readLimit)
void reset() throws IOException
IOException
int skipBytes(int n) throws IOException
skipBytes
in interface DataInput
IOException
int skipBytes(long n) throws IOException
IOException
void readFully(byte[] b) throws IOException
readFully
in interface DataInput
IOException
void readFully(byte[] b, int off, int len) throws IOException
readFully
in interface DataInput
IOException
long position()
void seek(long pos) throws IOException
IOException
int readUnsignedByte() throws IOException
readUnsignedByte
in interface DataInput
IOException
int readInt() throws IOException
readInt
in interface DataInput
IOException
long readLong() throws IOException
readLong
in interface DataInput
IOException
boolean readBoolean() throws IOException
readBoolean
in interface DataInput
IOException
byte readByte() throws IOException
readByte
in interface DataInput
IOException
char readChar() throws IOException
readChar
in interface DataInput
IOException
double readDouble() throws IOException
readDouble
in interface DataInput
IOException
float readFloat() throws IOException
readFloat
in interface DataInput
IOException
String readLine() throws IOException
readLine
in interface DataInput
IOException
short readShort() throws IOException
readShort
in interface DataInput
IOException
String readUTF() throws IOException
readUTF
in interface DataInput
IOException
int readUnsignedShort() throws IOException
readUnsignedShort
in interface DataInput
IOException
long readUnsignedInt() throws IOException
IOException
long readID(int idSize) throws IOException
IOException
void close() throws IOException
IOException