- 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.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.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.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.LongBuffer
-
Returns the long 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.LongBuffer
-
Returns the offset of the long array which this buffer is based on, if there is one.
- asFloatBuffer() - Method in class java.nio.ByteBuffer
-
Returns a float buffer which is based on the remaining content of this byte buffer.
- asIntBuffer() - Method in class java.nio.ByteBuffer
-
Returns a int buffer which is based on the remaining content of this byte 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.DoubleBuffer
-
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.
- asShortBuffer() - Method in class java.nio.ByteBuffer
-
Returns a short buffer which is based on the remaining content of this byte buffer.
- 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() - 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.
- 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.
- getElementSize() - Method in class java.nio.ByteBuffer
-
- getElementSize() - Method in class java.nio.FloatBuffer
-
- getElementSize() - Method in class java.nio.IntBuffer
-
- getElementSize() - Method in class java.nio.ShortBuffer
-
- getElementSize() - Method in interface org.gwtproject.nio.HasArrayBufferView
-
Returns the element size in bytes (e.g.
- getElementType() - Method in class java.nio.ByteBuffer
-
- getElementType() - Method in class java.nio.FloatBuffer
-
- getElementType() - Method in class java.nio.IntBuffer
-
- getElementType() - Method in class java.nio.ShortBuffer
-
- 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.
- 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.
- 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.
- 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.
- getTypedArray() - Method in class java.nio.ByteBuffer
-
- getTypedArray() - Method in class java.nio.FloatBuffer
-
- getTypedArray() - Method in class java.nio.IntBuffer
-
- getTypedArray() - Method in class java.nio.ShortBuffer
-
- getTypedArray() - Method in interface org.gwtproject.nio.HasArrayBufferView
-
- 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.
- 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(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.
- 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.
- 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.
- 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.
- 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.