Interface RandomAccessInput

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method 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
    • Method Detail

      • readByte

        byte readByte​(long pos)
               throws java.io.IOException
        Reads a byte at the given position in the file
        Throws:
        java.io.IOException
        See Also:
        DataInput.readByte()
      • readShort

        short readShort​(long pos)
                 throws java.io.IOException
        Reads a short at the given position in the file
        Throws:
        java.io.IOException
        See Also:
        DataInput.readShort()
      • readInt

        int readInt​(long pos)
             throws java.io.IOException
        Reads an integer at the given position in the file
        Throws:
        java.io.IOException
        See Also:
        DataInput.readInt()
      • readLong

        long readLong​(long pos)
               throws java.io.IOException
        Reads a long at the given position in the file
        Throws:
        java.io.IOException
        See Also:
        DataInput.readLong()