Class ArrayBufferViewImpl

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected ArrayBufferImpl arrayBuf  
      protected int byteLength  
      protected int byteOffset  
      (package private) static boolean USE_LITTLE_ENDIAN
      The spec lets the platform's native endianness come through, so we choose to expose little-endian regardless -- if apps care about the endianness but don't test for it, it is likely they assume little-endian.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      ArrayBuffer buffer()
      Get the underlying ArrayBuffer.
      int byteLength()
      Get the length of this view in bytes.
      int byteOffset()
      Get the offset from the beginning of the underlying ArrayBuffer.
      protected int checkRange​(int index, int bytesPerElement)
      Check the index range and throw an exception if out of range, if ok return the byte index of the specified element.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • USE_LITTLE_ENDIAN

        static final boolean USE_LITTLE_ENDIAN
        The spec lets the platform's native endianness come through, so we choose to expose little-endian regardless -- if apps care about the endianness but don't test for it, it is likely they assume little-endian.
        See Also:
        Constant Field Values
      • byteLength

        protected final int byteLength
      • byteOffset

        protected final int byteOffset
    • Constructor Detail

      • ArrayBufferViewImpl

        public ArrayBufferViewImpl​(ArrayBuffer buffer,
                                   int byteOffset,
                                   int byteLength)
        Parameters:
        buffer -
        byteOffset -
        byteLength -
    • Method Detail

      • byteLength

        public int byteLength()
        Description copied from interface: ArrayBufferView
        Get the length of this view in bytes.
        Specified by:
        byteLength in interface ArrayBufferView
        Returns:
        number of bytes in this view
      • checkRange

        protected int checkRange​(int index,
                                 int bytesPerElement)
        Check the index range and throw an exception if out of range, if ok return the byte index of the specified element.
        Parameters:
        index - an element index
        bytesPerElement -
        Returns:
        the byte index of the start of this element