public interface RandomAccessInput
IndexInput
, this has no concept of file position, all reads
are absolute. However, like IndexInput, it is only intended for use by a single thread.Modifier and Type | Method and Description |
---|---|
byte |
readByte(long pos)
Reads a byte at the given position in the file
|
int |
readInt(long pos)
Reads an integer at the given position in the file
|
long |
readLong(long pos)
Reads a long at the given position in the file
|
short |
readShort(long pos)
Reads a short at the given position in the file
|
byte readByte(long pos) throws IOException
IOException
DataInput.readByte()
short readShort(long pos) throws IOException
IOException
DataInput.readShort()
int readInt(long pos) throws IOException
IOException
DataInput.readInt()
long readLong(long pos) throws IOException
IOException
DataInput.readLong()
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.