Interface ReadableBuffer

    • Method Detail

      • readByte

        byte readByte()
        Reads raw byte from the buffer
        Returns:
        byte read
      • readShort

        short readShort()
        Reads short from the buffer.
        16bit integer (00 00)
        Returns:
        short read
      • readChar

        char readChar()
      • readInt

        int readInt()
        Reads int from the buffer.
        32bit integer (00 00 00 00)
        Returns:
        int read
      • readFloat

        float readFloat()
      • readLong

        long readLong()
      • readDouble

        double readDouble()
      • readBytes

        void readBytes​(byte[] dst)
      • readBytes

        void readBytes​(byte[] dst,
                       int offset,
                       int length)
      • remaining

        int remaining()