- allocate(int) - Static method in class java.nio.ByteBuffer
-
Creates a byte buffer based on a newly allocated byte array.
- allocate(int) - Static method in class java.nio.CharBuffer
-
Creates a char buffer based on a newly allocated char array.
- allocate(int) - Static method in class java.nio.DoubleBuffer
-
Creates a double buffer based on a newly allocated double array.
- allocate(int) - Static method in class java.nio.FloatBuffer
-
Creates a float buffer based on a newly allocated float array.
- allocate(int) - Static method in class java.nio.IntBuffer
-
Creates an int buffer based on a newly allocated int array.
- allocate(int) - Static method in class java.nio.LongBuffer
-
Creates a long buffer based on a newly allocated long array.
- allocate(int) - Static method in class java.nio.ShortBuffer
-
Creates a short buffer based on a newly allocated short array.
- allocateDirect(int) - Static method in class java.nio.ByteBuffer
-
Creates a direct byte buffer based on a newly allocated memory block.
- append(char) - Method in class java.nio.CharBuffer
-
Writes the given char to the current position and increases the position
by 1.
- append(CharSequence) - Method in class java.nio.CharBuffer
-
Writes all chars of the given character sequence csq to the
current position of this buffer, and increases the position by the length
of the csq.
- append(CharSequence, int, int) - Method in class java.nio.CharBuffer
-
Writes chars of the given CharSequence to the current position of
this buffer, and increases the position by the number of chars written.
- array() - Method in class java.nio.ByteBuffer
-
Returns the byte array which this buffer is based on, if there is one.
- array() - Method in class java.nio.CharBuffer
-
Returns the char array which this buffer is based on, if there is one.
- array() - Method in class java.nio.DoubleBuffer
-
Returns the double array which this buffer is based on, if there is one.
- array() - Method in class java.nio.FloatBuffer
-
Returns the float array which this buffer is based on, if there is one.
- array() - Method in class java.nio.IntBuffer
-
Returns the int array which this buffer is based on, if there is one.
- array() - Method in class java.nio.LongBuffer
-
Returns the long array which this buffer is based on, if there is one.
- array() - Method in class java.nio.ShortBuffer
-
Returns the short array which this buffer is based on, if there is one.
- arrayOffset() - Method in class java.nio.ByteBuffer
-
Returns the offset of the byte array which this buffer is based on, if
there is one.
- arrayOffset() - Method in class java.nio.CharBuffer
-
Returns the offset of the char array which this buffer is based on, if
there is one.
- arrayOffset() - Method in class java.nio.DoubleBuffer
-
Returns the offset of the double array which this buffer is based on, if
there is one.
- arrayOffset() - Method in class java.nio.FloatBuffer
-
Returns the offset of the float array which this buffer is based on, if
there is one.
- arrayOffset() - Method in class java.nio.IntBuffer
-
Returns the offset of the int array which this buffer is based on, if
there is one.
- arrayOffset() - Method in class java.nio.LongBuffer
-
Returns the offset of the long array which this buffer is based on, if
there is one.
- arrayOffset() - Method in class java.nio.ShortBuffer
-
Returns the offset of the short array which this buffer is based on, if
there is one.
- asCharBuffer() - Method in class java.nio.ByteBuffer
-
Returns a char buffer which is based on the remaining content of this
byte buffer.
- asDoubleBuffer() - Method in class java.nio.ByteBuffer
-
Returns a double buffer which is based on the remaining content of this
byte buffer.
- asFloatBuffer() - Method in class java.nio.ByteBuffer
-
Returns a float buffer which is based on the remaining content of this
byte buffer.
- asFloatBuffer() - Method in class java.nio.DirectReadWriteByteBuffer
-
- asIntBuffer() - Method in class java.nio.ByteBuffer
-
Returns a int buffer which is based on the remaining content of this byte
buffer.
- asIntBuffer() - Method in class java.nio.DirectReadWriteByteBuffer
-
- asLongBuffer() - Method in class java.nio.ByteBuffer
-
Returns a long buffer which is based on the remaining content of this
byte buffer.
- asReadOnlyBuffer() - Method in class java.nio.ByteBuffer
-
Returns a read-only buffer that shares its content with this buffer.
- asReadOnlyBuffer() - Method in class java.nio.CharBuffer
-
Returns a read-only buffer that shares its content with this buffer.
- asReadOnlyBuffer() - Method in class java.nio.DirectReadWriteByteBuffer
-
- asReadOnlyBuffer() - Method in class java.nio.DoubleBuffer
-
Returns a read-only buffer that shares its content with this buffer.
- asReadOnlyBuffer() - Method in class java.nio.FloatBuffer
-
Returns a read-only buffer that shares its content with this buffer.
- asReadOnlyBuffer() - Method in class java.nio.IntBuffer
-
Returns a read-only buffer that shares its content with this buffer.
- asReadOnlyBuffer() - Method in class java.nio.LongBuffer
-
Returns a read-only buffer that shares its content with this buffer.
- asReadOnlyBuffer() - Method in class java.nio.ShortBuffer
-
Returns a read-only buffer that shares its content with this buffer.
- asShortBuffer() - Method in class java.nio.ByteBuffer
-
Returns a short buffer which is based on the remaining content of this
byte buffer.
- asShortBuffer() - Method in class java.nio.DirectReadWriteByteBuffer
-
- get() - Method in class java.nio.ByteBuffer
-
Returns the byte at the current position and increases the position by 1.
- get(byte[]) - Method in class java.nio.ByteBuffer
-
Reads bytes from the current position into the specified byte array and
increases the position by the number of bytes read.
- get(byte[], int, int) - Method in class java.nio.ByteBuffer
-
Reads bytes from the current position into the specified byte array,
starting at the specified offset, and increases the position by the
number of bytes read.
- get(int) - Method in class java.nio.ByteBuffer
-
Returns the byte at the specified index and does not change the position.
- get() - Method in class java.nio.CharBuffer
-
Returns the char at the current position and increases the position by 1.
- get(char[]) - Method in class java.nio.CharBuffer
-
Reads chars from the current position into the specified char array and
increases the position by the number of chars read.
- get(char[], int, int) - Method in class java.nio.CharBuffer
-
Reads chars from the current position into the specified char array,
starting from the specified offset, and increases the position by the
number of chars read.
- get(int) - Method in class java.nio.CharBuffer
-
Returns a char at the specified index; the position is not changed.
- get(byte[], int, int) - Method in class java.nio.DirectByteBuffer
-
- get() - Method in class java.nio.DirectByteBuffer
-
- get(int) - Method in class java.nio.DirectByteBuffer
-
- get() - Method in class java.nio.DoubleBuffer
-
Returns the double at the current position and increases the position by
1.
- get(double[]) - Method in class java.nio.DoubleBuffer
-
Reads doubles from the current position into the specified double array
and increases the position by the number of doubles read.
- get(double[], int, int) - Method in class java.nio.DoubleBuffer
-
Reads doubles from the current position into the specified double array,
starting from the specified offset, and increases the position by the
number of doubles read.
- get(int) - Method in class java.nio.DoubleBuffer
-
Returns a double at the specified index; the position is not changed.
- get() - Method in class java.nio.FloatBuffer
-
Returns the float at the current position and increases the position by
1.
- get(float[]) - Method in class java.nio.FloatBuffer
-
Reads floats from the current position into the specified float array and
increases the position by the number of floats read.
- get(float[], int, int) - Method in class java.nio.FloatBuffer
-
Reads floats from the current position into the specified float array,
starting from the specified offset, and increases the position by the
number of floats read.
- get(int) - Method in class java.nio.FloatBuffer
-
Returns a float at the specified index; the position is not changed.
- get() - Method in class java.nio.IntBuffer
-
Returns the int at the current position and increases the position by 1.
- get(int[]) - Method in class java.nio.IntBuffer
-
Reads ints from the current position into the specified int array and
increases the position by the number of ints read.
- get(int[], int, int) - Method in class java.nio.IntBuffer
-
Reads ints from the current position into the specified int array,
starting from the specified offset, and increases the position by the
number of ints read.
- get(int) - Method in class java.nio.IntBuffer
-
Returns an int at the specified index; the position is not changed.
- get() - Method in class java.nio.LongBuffer
-
Returns the long at the current position and increase the position by 1.
- get(long[]) - Method in class java.nio.LongBuffer
-
Reads longs from the current position into the specified long array and
increases the position by the number of longs read.
- get(long[], int, int) - Method in class java.nio.LongBuffer
-
Reads longs from the current position into the specified long array,
starting from the specified offset, and increase the position by the
number of longs read.
- get(int) - Method in class java.nio.LongBuffer
-
Returns the long at the specified index; the position is not changed.
- get() - Method in class java.nio.ShortBuffer
-
Returns the short at the current position and increases the position by
1.
- get(short[]) - Method in class java.nio.ShortBuffer
-
Reads shorts from the current position into the specified short array and
increases the position by the number of shorts read.
- get(short[], int, int) - Method in class java.nio.ShortBuffer
-
Reads shorts from the current position into the specified short array,
starting from the specified offset, and increases the position by the
number of shorts read.
- get(int) - Method in class java.nio.ShortBuffer
-
Returns the short at the specified index; the position is not changed.
- getByteBuffer() - Method in interface java.nio.ByteBufferWrapper
-
- getChar() - Method in class java.nio.ByteBuffer
-
Returns the char at the current position and increases the position by 2.
- getChar(int) - Method in class java.nio.ByteBuffer
-
Returns the char at the specified index.
- getDouble() - Method in class java.nio.ByteBuffer
-
Returns the double at the current position and increases the position by
8.
- getDouble(int) - Method in class java.nio.ByteBuffer
-
Returns the double at the specified index.
- getDouble() - Method in class java.nio.DirectByteBuffer
-
- getDouble(int) - Method in class java.nio.DirectByteBuffer
-
- getElementSize() - Method in class java.nio.DirectByteBuffer
-
- getElementSize() - Method in interface org.gwtproject.nio.HasArrayBufferView
-
Returns the element size in bytes (e.g.
- getElementType() - Method in class java.nio.DirectByteBuffer
-
- getElementType() - Method in interface org.gwtproject.nio.HasArrayBufferView
-
Returns the open GL element type constant corresponding to the buffer contents.
- getFloat() - Method in class java.nio.ByteBuffer
-
Returns the float at the current position and increases the position by
4.
- getFloat(int) - Method in class java.nio.ByteBuffer
-
Returns the float at the specified index.
- getFloat() - Method in class java.nio.DirectByteBuffer
-
- getFloat(int) - Method in class java.nio.DirectByteBuffer
-
- getInt() - Method in class java.nio.ByteBuffer
-
Returns the int at the current position and increases the position by 4.
- getInt(int) - Method in class java.nio.ByteBuffer
-
Returns the int at the specified index.
- getInt() - Method in class java.nio.DirectByteBuffer
-
- getInt(int) - Method in class java.nio.DirectByteBuffer
-
- getLong() - Method in class java.nio.ByteBuffer
-
Returns the long at the current position and increases the position by 8.
- getLong(int) - Method in class java.nio.ByteBuffer
-
Returns the long at the specified index.
- getLong() - Method in class java.nio.DirectByteBuffer
-
- getLong(int) - Method in class java.nio.DirectByteBuffer
-
- getShort() - Method in class java.nio.ByteBuffer
-
Returns the short at the current position and increases the position by 2.
- getShort(int) - Method in class java.nio.ByteBuffer
-
Returns the short at the specified index.
- getShort() - Method in class java.nio.DirectByteBuffer
-
- getShort(int) - Method in class java.nio.DirectByteBuffer
-
- getTypedArray() - Method in class java.nio.DirectByteBuffer
-
- getTypedArray() - Method in interface org.gwtproject.nio.HasArrayBufferView
-
- hasArray() - Method in class java.nio.ByteBuffer
-
Indicates whether this buffer is based on a byte array and provides
read/write access.
- hasArray() - Method in class java.nio.CharBuffer
-
Indicates whether this buffer is based on a char array and is read/write.
- hasArray() - Method in class java.nio.DoubleBuffer
-
Indicates whether this buffer is based on a double array and is
read/write.
- hasArray() - Method in class java.nio.FloatBuffer
-
Indicates whether this buffer is based on a float array and is
read/write.
- hasArray() - Method in class java.nio.IntBuffer
-
Indicates whether this buffer is based on a int array and is read/write.
- hasArray() - Method in class java.nio.LongBuffer
-
Indicates whether this buffer is based on a long array and is read/write.
- hasArray() - Method in class java.nio.ShortBuffer
-
Indicates whether this buffer is based on a short array and is
read/write.
- HasArrayBufferView - Interface in org.gwtproject.nio
-
Allows us to get direct access to the typed array used by the nio buffer emulation in GWT.
- hashCode() - Method in class java.nio.ByteBuffer
-
Calculates this buffer's hash code from the remaining chars.
- hashCode() - Method in class java.nio.CharBuffer
-
Calculates this buffer's hash code from the remaining chars.
- hashCode() - Method in class java.nio.DoubleBuffer
-
Calculates this buffer's hash code from the remaining chars.
- hashCode() - Method in class java.nio.FloatBuffer
-
Calculates this buffer's hash code from the remaining chars.
- hashCode() - Method in class java.nio.IntBuffer
-
Calculates this buffer's hash code from the remaining chars.
- hashCode() - Method in class java.nio.LongBuffer
-
Calculates this buffer's hash code from the remaining chars.
- hashCode() - Method in class java.nio.ShortBuffer
-
Calculates this buffer's hash code from the remaining chars.
- hasRemaining() - Method in class java.nio.Buffer
-
Indicates if there are elements remaining in this buffer, that is if
position < limit.
- position() - Method in class java.nio.Buffer
-
Returns the position of this buffer.
- position(int) - Method in class java.nio.Buffer
-
Sets the position of this buffer.
- protectedArray() - Method in class java.nio.DirectReadWriteByteBuffer
-
- protectedArray() - Method in class java.nio.IntBuffer
-
Child class implements this method to realize array().
- protectedArrayOffset() - Method in class java.nio.DirectReadWriteByteBuffer
-
- protectedArrayOffset() - Method in class java.nio.IntBuffer
-
Child class implements this method to realize arrayOffset().
- protectedHasArray() - Method in class java.nio.DirectReadWriteByteBuffer
-
- protectedHasArray() - Method in class java.nio.IntBuffer
-
Child class implements this method to realize hasArray().
- put(byte) - Method in class java.nio.ByteBuffer
-
Writes the given byte to the current position and increases the position
by 1.
- put(byte[]) - Method in class java.nio.ByteBuffer
-
Writes bytes in the given byte array to the current position and
increases the position by the number of bytes written.
- put(byte[], int, int) - Method in class java.nio.ByteBuffer
-
Writes bytes in the given byte array, starting from the specified offset,
to the current position and increases the position by the number of bytes
written.
- put(ByteBuffer) - Method in class java.nio.ByteBuffer
-
Writes all the remaining bytes of the src byte buffer to this
buffer's current position, and increases both buffers' position by the
number of bytes copied.
- put(int, byte) - Method in class java.nio.ByteBuffer
-
Write a byte to the specified index of this buffer without changing the
position.
- put(char) - Method in class java.nio.CharBuffer
-
Writes the given char to the current position and increases the position
by 1.
- put(char[]) - Method in class java.nio.CharBuffer
-
Writes chars from the given char array to the current position and
increases the position by the number of chars written.
- put(char[], int, int) - Method in class java.nio.CharBuffer
-
Writes chars from the given char array, starting from the specified offset,
to the current position and increases the position by the number of chars
written.
- put(CharBuffer) - Method in class java.nio.CharBuffer
-
Writes all the remaining chars of the src char buffer to this
buffer's current position, and increases both buffers' position by the
number of chars copied.
- put(int, char) - Method in class java.nio.CharBuffer
-
Writes a char to the specified index of this buffer; the position is not
changed.
- put(String) - Method in class java.nio.CharBuffer
-
Writes all chars of the given string to the current position of this
buffer, and increases the position by the length of string.
- put(String, int, int) - Method in class java.nio.CharBuffer
-
Writes chars of the given string to the current position of this buffer,
and increases the position by the number of chars written.
- put(byte) - Method in class java.nio.DirectReadWriteByteBuffer
-
- put(int, byte) - Method in class java.nio.DirectReadWriteByteBuffer
-
- put(byte[], int, int) - Method in class java.nio.DirectReadWriteByteBuffer
-
- put(double) - Method in class java.nio.DoubleBuffer
-
Writes the given double to the current position and increases the
position by 1.
- put(double[]) - Method in class java.nio.DoubleBuffer
-
Writes doubles from the given double array to the current position and
increases the position by the number of doubles written.
- put(double[], int, int) - Method in class java.nio.DoubleBuffer
-
Writes doubles from the given double array, starting from the specified
offset, to the current position and increases the position by the number
of doubles written.
- put(DoubleBuffer) - Method in class java.nio.DoubleBuffer
-
Writes all the remaining doubles of the src double buffer to this
buffer's current position, and increases both buffers' position by the
number of doubles copied.
- put(int, double) - Method in class java.nio.DoubleBuffer
-
Write a double to the specified index of this buffer and the position is
not changed.
- put(float) - Method in class java.nio.FloatBuffer
-
Writes the given float to the current position and increases the position
by 1.
- put(float[]) - Method in class java.nio.FloatBuffer
-
Writes floats from the given float array to the current position and
increases the position by the number of floats written.
- put(float[], int, int) - Method in class java.nio.FloatBuffer
-
Writes floats from the given float array, starting from the specified
offset, to the current position and increases the position by the number
of floats written.
- put(FloatBuffer) - Method in class java.nio.FloatBuffer
-
Writes all the remaining floats of the src float buffer to this
buffer's current position, and increases both buffers' position by the
number of floats copied.
- put(int, float) - Method in class java.nio.FloatBuffer
-
Writes a float to the specified index of this buffer; the position is not
changed.
- put(int) - Method in class java.nio.IntBuffer
-
Writes the given int to the current position and increases the position
by 1.
- put(int[]) - Method in class java.nio.IntBuffer
-
Writes ints from the given int array to the current position and
increases the position by the number of ints written.
- put(int[], int, int) - Method in class java.nio.IntBuffer
-
Writes ints from the given int array, starting from the specified offset,
to the current position and increases the position by the number of ints
written.
- put(IntBuffer) - Method in class java.nio.IntBuffer
-
Writes all the remaining ints of the src int buffer to this
buffer's current position, and increases both buffers' position by the
number of ints copied.
- put(int, int) - Method in class java.nio.IntBuffer
-
Write a int to the specified index of this buffer; the position is not
changed.
- put(long) - Method in class java.nio.LongBuffer
-
Writes the given long to the current position and increases the position
by 1.
- put(long[]) - Method in class java.nio.LongBuffer
-
Writes longs from the given long array to the current position and
increases the position by the number of longs written.
- put(long[], int, int) - Method in class java.nio.LongBuffer
-
Writes longs from the given long array, starting from the specified
offset, to the current position and increases the position by the number
of longs written.
- put(LongBuffer) - Method in class java.nio.LongBuffer
-
Writes all the remaining longs of the src long buffer to this
buffer's current position, and increases both buffers' position by the
number of longs copied.
- put(int, long) - Method in class java.nio.LongBuffer
-
Writes a long to the specified index of this buffer; the position is not
changed.
- put(short) - Method in class java.nio.ShortBuffer
-
Writes the given short to the current position and increases the position
by 1.
- put(short[]) - Method in class java.nio.ShortBuffer
-
Writes shorts from the given short array to the current position and
increases the position by the number of shorts written.
- put(short[], int, int) - Method in class java.nio.ShortBuffer
-
Writes shorts from the given short array, starting from the specified
offset, to the current position and increases the position by the number
of shorts written.
- put(ShortBuffer) - Method in class java.nio.ShortBuffer
-
Writes all the remaining shorts of the src short buffer to this
buffer's current position, and increases both buffers' position by the
number of shorts copied.
- put(int, short) - Method in class java.nio.ShortBuffer
-
Writes a short to the specified index of this buffer; the position is not
changed.
- putChar(char) - Method in class java.nio.ByteBuffer
-
Writes the given char to the current position and increases the position
by 2.
- putChar(int, char) - Method in class java.nio.ByteBuffer
-
Writes the given char to the specified index of this buffer.
- putDouble(double) - Method in class java.nio.ByteBuffer
-
Writes the given double to the current position and increases the position
by 8.
- putDouble(int, double) - Method in class java.nio.ByteBuffer
-
Writes the given double to the specified index of this buffer.
- putDouble(double) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putDouble(int, double) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putFloat(float) - Method in class java.nio.ByteBuffer
-
Writes the given float to the current position and increases the position
by 4.
- putFloat(int, float) - Method in class java.nio.ByteBuffer
-
Writes the given float to the specified index of this buffer.
- putFloat(float) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putFloat(int, float) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putInt(int) - Method in class java.nio.ByteBuffer
-
Writes the given int to the current position and increases the position by
4.
- putInt(int, int) - Method in class java.nio.ByteBuffer
-
Writes the given int to the specified index of this buffer.
- putInt(int) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putInt(int, int) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putLong(long) - Method in class java.nio.ByteBuffer
-
Writes the given long to the current position and increases the position
by 8.
- putLong(int, long) - Method in class java.nio.ByteBuffer
-
Writes the given long to the specified index of this buffer.
- putLong(int, long) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putLong(long) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putShort(short) - Method in class java.nio.ByteBuffer
-
Writes the given short to the current position and increases the position
by 2.
- putShort(int, short) - Method in class java.nio.ByteBuffer
-
Writes the given short to the specified index of this buffer.
- putShort(int, short) - Method in class java.nio.DirectReadWriteByteBuffer
-
- putShort(short) - Method in class java.nio.DirectReadWriteByteBuffer
-