Interface BinaryPositionReadable

  • All Known Subinterfaces:
    BinaryInputStream

    public interface BinaryPositionReadable
    Interface allowing for positioned read.
    • Method Detail

      • readBytePositioned

        byte readBytePositioned​(int pos)
        Read byte at the given position.
        Parameters:
        pos - Position.
        Returns:
        Value.
      • readShortPositioned

        short readShortPositioned​(int pos)
        Read short at the given position.
        Parameters:
        pos - Position.
        Returns:
        Value.
      • readIntPositioned

        int readIntPositioned​(int pos)
        Read integer at the given position.
        Parameters:
        pos - Position.
        Returns:
        Value.