Skip navigation links
A B C D E F G H I J L M N O P R S T U V W 

A

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
 

B

BIG_ENDIAN - Static variable in class java.nio.ByteOrder
This constant represents big endian.
Buffer - Class in java.nio
A buffer is a list of elements of a specific primitive type.
BufferOverflowException - Exception in java.nio
A BufferOverflowException is thrown when elements are written to a buffer but there is not enough remaining space in the buffer.
BufferOverflowException() - Constructor for exception java.nio.BufferOverflowException
Constructs a BufferOverflowException.
BufferUnderflowException - Exception in java.nio
A BufferUnderflowException is thrown when elements are read from a buffer but there are not enough remaining elements in the buffer.
BufferUnderflowException() - Constructor for exception java.nio.BufferUnderflowException
Constructs a BufferUnderflowException.
ByteBuffer - Class in java.nio
A buffer for bytes.
ByteBufferWrapper - Interface in java.nio
 
ByteOrder - Class in java.nio
Defines byte order constants.

C

capacity() - Method in class java.nio.Buffer
Returns the capacity of this buffer.
charAt(int) - Method in class java.nio.CharBuffer
Returns the character located at the specified index in the buffer.
CharBuffer - Class in java.nio
A buffer of chars.
clear() - Method in class java.nio.Buffer
Clears this buffer.
com.google.gwt.corp.compatibility - package com.google.gwt.corp.compatibility
 
compact() - Method in class java.nio.ByteBuffer
Compacts this byte buffer.
compact() - Method in class java.nio.CharBuffer
Compacts this char buffer.
compact() - Method in class java.nio.DirectReadWriteByteBuffer
 
compact() - Method in class java.nio.DoubleBuffer
Compacts this double buffer.
compact() - Method in class java.nio.FloatBuffer
Compacts this float buffer.
compact() - Method in class java.nio.IntBuffer
Compacts this int buffer.
compact() - Method in class java.nio.LongBuffer
Compacts this long buffer.
compact() - Method in class java.nio.ShortBuffer
Compacts this short buffer.
compareTo(ByteBuffer) - Method in class java.nio.ByteBuffer
Compares the remaining bytes of this buffer to another byte buffer's remaining bytes.
compareTo(CharBuffer) - Method in class java.nio.CharBuffer
Compare the remaining chars of this buffer to another char buffer's remaining chars.
compareTo(DoubleBuffer) - Method in class java.nio.DoubleBuffer
Compare the remaining doubles of this buffer to another double buffer's remaining doubles.
compareTo(FloatBuffer) - Method in class java.nio.FloatBuffer
Compare the remaining floats of this buffer to another float buffer's remaining floats.
compareTo(IntBuffer) - Method in class java.nio.IntBuffer
Compares the remaining ints of this buffer to another int buffer's remaining ints.
compareTo(LongBuffer) - Method in class java.nio.LongBuffer
Compare the remaining longs of this buffer to another long buffer's remaining longs.
compareTo(ShortBuffer) - Method in class java.nio.ShortBuffer
Compare the remaining shorts of this buffer to another short buffer's remaining shorts.

D

DirectByteBuffer - Class in java.nio
DirectByteBuffer, DirectReadWriteByteBuffer and DirectReadOnlyHeapByteBuffer compose the implementation of direct byte buffers.
DirectReadWriteByteBuffer - Class in java.nio
DirectByteBuffer, DirectReadWriteByteBuffer and DirectReadOnlyByteBuffer compose the implementation of direct byte buffers.
DirectReadWriteByteBuffer(ArrayBuffer) - Constructor for class java.nio.DirectReadWriteByteBuffer
 
DirectReadWriteByteBuffer(int) - Constructor for class java.nio.DirectReadWriteByteBuffer
 
DirectReadWriteByteBuffer(ArrayBuffer, int, int) - Constructor for class java.nio.DirectReadWriteByteBuffer
 
DoubleBuffer - Class in java.nio
A buffer of doubles.
doubleToLongBits(double) - Static method in class com.google.gwt.corp.compatibility.Numbers
 
doubleToRawLongBits(double) - Static method in class com.google.gwt.corp.compatibility.Numbers
 
duplicate() - Method in class java.nio.ByteBuffer
Returns a duplicated buffer that shares its content with this buffer.
duplicate() - Method in class java.nio.CharBuffer
Returns a duplicated buffer that shares its content with this buffer.
duplicate() - Method in class java.nio.DirectReadWriteByteBuffer
 
duplicate() - Method in class java.nio.DoubleBuffer
Returns a duplicated buffer that shares its content with this buffer.
duplicate() - Method in class java.nio.FloatBuffer
Returns a duplicated buffer that shares its content with this buffer.
duplicate() - Method in class java.nio.IntBuffer
Returns a duplicated buffer that shares its content with this buffer.
duplicate() - Method in class java.nio.LongBuffer
Returns a duplicated buffer that shares its content with this buffer.
duplicate() - Method in class java.nio.ShortBuffer
Returns a duplicated buffer that shares its content with this buffer.

E

Endianness - Enum in java.nio
 
equals(Object) - Method in class java.nio.ByteBuffer
Checks whether this byte buffer is equal to another object.
equals(Object) - Method in class java.nio.CharBuffer
Checks whether this char buffer is equal to another object.
equals(Object) - Method in class java.nio.DoubleBuffer
Checks whether this double buffer is equal to another object.
equals(Object) - Method in class java.nio.FloatBuffer
Checks whether this float buffer is equal to another object.
equals(Object) - Method in class java.nio.IntBuffer
Checks whether this int buffer is equal to another object.
equals(Object) - Method in class java.nio.LongBuffer
Checks whether this long buffer is equal to another object.
equals(Object) - Method in class java.nio.ShortBuffer
Checks whether this short buffer is equal to another object.

F

flip() - Method in class java.nio.Buffer
Flips this buffer.
FloatBuffer - Class in java.nio
A buffer of floats.
floatToIntBits(float) - Static method in class com.google.gwt.corp.compatibility.Numbers
 

G

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
 

H

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.

I

intBitsToFloat(int) - Static method in class com.google.gwt.corp.compatibility.Numbers
 
IntBuffer - Class in java.nio
A buffer of ints.
InvalidMarkException - Exception in java.nio
An InvalidMarkException is thrown when reset() is called on a buffer, but no mark has been set previously.
InvalidMarkException() - Constructor for exception java.nio.InvalidMarkException
Constructs an InvalidMarkException.
isDirect() - Method in class java.nio.ByteBuffer
Indicates whether this buffer is direct.
isDirect() - Method in class java.nio.CharBuffer
Indicates whether this buffer is direct.
isDirect() - Method in class java.nio.DirectByteBuffer
 
isDirect() - Method in class java.nio.DoubleBuffer
Indicates whether this buffer is direct.
isDirect() - Method in class java.nio.FloatBuffer
Indicates whether this buffer is direct.
isDirect() - Method in class java.nio.IntBuffer
Indicates whether this buffer is direct.
isDirect() - Method in class java.nio.LongBuffer
Indicates whether this buffer is direct.
isDirect() - Method in class java.nio.ShortBuffer
Indicates whether this buffer is direct.
isReadOnly() - Method in class java.nio.Buffer
Indicates whether this buffer is read-only.
isReadOnly() - Method in class java.nio.DirectReadWriteByteBuffer
 

J

java.nio - package java.nio
 

L

length() - Method in class java.nio.CharBuffer
Returns the number of remaining chars.
limit() - Method in class java.nio.Buffer
Returns the limit of this buffer.
limit(int) - Method in class java.nio.Buffer
Sets the limit of this buffer.
LITTLE_ENDIAN - Static variable in class java.nio.ByteOrder
This constant represents little endian.
loadInt(int) - Method in class java.nio.DirectByteBuffer
 
loadLong(int) - Method in class java.nio.DirectByteBuffer
 
loadShort(int) - Method in class java.nio.DirectByteBuffer
 
longBitsToDouble(long) - Static method in class com.google.gwt.corp.compatibility.Numbers
 
LongBuffer - Class in java.nio
A buffer of longs.

M

mark() - Method in class java.nio.Buffer
Marks the current position, so that the position may return to this point later by calling reset().

N

nativeOrder() - Static method in class java.nio.ByteOrder
Returns the current platform byte order.
Numbers - Class in com.google.gwt.corp.compatibility
 
Numbers() - Constructor for class com.google.gwt.corp.compatibility.Numbers
 

O

order() - Method in class java.nio.ByteBuffer
Returns the byte order used by this buffer when converting bytes from/to other primitive types.
order(ByteOrder) - Method in class java.nio.ByteBuffer
Sets the byte order of this buffer.
order() - Method in class java.nio.CharBuffer
Returns the byte order used by this buffer when converting chars from/to bytes.
order() - Method in class java.nio.DoubleBuffer
Returns the byte order used by this buffer when converting doubles from/to bytes.
order() - Method in class java.nio.FloatBuffer
Returns the byte order used by this buffer when converting floats from/to bytes.
order() - Method in class java.nio.IntBuffer
Returns the byte order used by this buffer when converting ints from/to bytes.
order() - Method in class java.nio.LongBuffer
Returns the byte order used by this buffer when converting longs from/to bytes.
order() - Method in class java.nio.ShortBuffer
Returns the byte order used by this buffer when converting shorts from/to bytes.
org.gwtproject.nio - package org.gwtproject.nio
 

P

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
 

R

read(CharBuffer) - Method in class java.nio.CharBuffer
Reads characters from this buffer and puts them into target.
ReadOnlyBufferException - Exception in java.nio
A ReadOnlyBufferException is thrown when some write operation is called on a read-only buffer.
ReadOnlyBufferException() - Constructor for exception java.nio.ReadOnlyBufferException
Constructs a ReadOnlyBufferException.
remaining() - Method in class java.nio.Buffer
Returns the number of remaining elements in this buffer, that is limit - position.
reset() - Method in class java.nio.Buffer
Resets the position of this buffer to the mark.
rewind() - Method in class java.nio.Buffer
Rewinds this buffer.

S

ShortBuffer - Class in java.nio
A buffer of shorts.
slice() - Method in class java.nio.ByteBuffer
Returns a sliced buffer that shares its content with this buffer.
slice() - Method in class java.nio.CharBuffer
Returns a sliced buffer that shares its content with this buffer.
slice() - Method in class java.nio.DirectReadWriteByteBuffer
 
slice() - Method in class java.nio.DoubleBuffer
Returns a sliced buffer that shares its content with this buffer.
slice() - Method in class java.nio.FloatBuffer
Returns a sliced buffer that shares its content with this buffer.
slice() - Method in class java.nio.IntBuffer
Returns a sliced buffer that shares its content with this buffer.
slice() - Method in class java.nio.LongBuffer
Returns a sliced buffer that shares its content with this buffer.
slice() - Method in class java.nio.ShortBuffer
Returns a sliced buffer that shares its content with this buffer.
store(int, int) - Method in class java.nio.DirectByteBuffer
 
store(int, long) - Method in class java.nio.DirectByteBuffer
 
store(int, short) - Method in class java.nio.DirectByteBuffer
 
stringToByteBuffer(String) - Method in class java.nio.ByteBuffer
 
StringToByteBuffer - Interface in java.nio
Ugly hack to get gwt internal stuff into nio, see StringByteBuffer in nio
stringToByteBuffer(String) - Method in interface java.nio.StringToByteBuffer
 
stringToByteBuffer(String) - Static method in class org.gwtproject.nio.TypedArrayHelper
 
subSequence(int, int) - Method in class java.nio.CharBuffer
Returns a new char buffer representing a sub-sequence of this buffer's current remaining content.

T

toString() - Method in class java.nio.ByteBuffer
Returns a string representing the state of this byte buffer.
toString() - Method in class java.nio.ByteOrder
Returns a string that describes this object.
toString() - Method in class java.nio.CharBuffer
Returns a string representing the current remaining chars of this buffer.
toString() - Method in class java.nio.DoubleBuffer
Returns a string representing the state of this double buffer.
toString() - Method in class java.nio.FloatBuffer
Returns a string representing the state of this float buffer.
toString() - Method in class java.nio.IntBuffer
Returns a string represents of the state of this int buffer.
toString() - Method in class java.nio.LongBuffer
Returns a string representing the state of this long buffer.
toString() - Method in class java.nio.ShortBuffer
Returns a string representing the state of this short buffer.
TypedArrayHelper - Class in org.gwtproject.nio
Allows us to wrap an existing typed array buffer in a ByteBuffer.
TypedArrayHelper() - Constructor for class org.gwtproject.nio.TypedArrayHelper
 

U

unwrap(ByteBuffer) - Static method in class org.gwtproject.nio.TypedArrayHelper
 

V

valueOf(String) - Static method in enum java.nio.Endianness
Returns the enum constant of this type with the specified name.
values() - Static method in enum java.nio.Endianness
Returns an array containing the constants of this enum type, in the order they are declared.

W

wrap(byte[]) - Static method in class java.nio.ByteBuffer
Creates a new byte buffer by wrapping the given byte array.
wrap(byte[], int, int) - Static method in class java.nio.ByteBuffer
Creates a new byte buffer by wrapping the given byte array.
wrap(char[]) - Static method in class java.nio.CharBuffer
Creates a new char buffer by wrapping the given char array.
wrap(char[], int, int) - Static method in class java.nio.CharBuffer
Creates a new char buffer by wrapping the given char array.
wrap(CharSequence) - Static method in class java.nio.CharBuffer
Creates a new char buffer by wrapping the given char sequence.
wrap(CharSequence, int, int) - Static method in class java.nio.CharBuffer
Creates a new char buffer by wrapping the given char sequence.
wrap(double[]) - Static method in class java.nio.DoubleBuffer
Creates a new double buffer by wrapping the given double array.
wrap(double[], int, int) - Static method in class java.nio.DoubleBuffer
Creates a new double buffer by wrapping the given double array.
wrap(float[]) - Static method in class java.nio.FloatBuffer
Creates a new float buffer by wrapping the given float array.
wrap(float[], int, int) - Static method in class java.nio.FloatBuffer
Creates a new float buffer by wrapping the given float array.
wrap(int[]) - Static method in class java.nio.IntBuffer
Creates a new int buffer by wrapping the given int array.
wrap(int[], int, int) - Static method in class java.nio.IntBuffer
Creates a new int buffer by wrapping the given int array.
wrap(long[]) - Static method in class java.nio.LongBuffer
Creates a new long buffer by wrapping the given long array.
wrap(long[], int, int) - Static method in class java.nio.LongBuffer
Creates a new long buffer by wrapping the given long array.
wrap(short[]) - Static method in class java.nio.ShortBuffer
Creates a new short buffer by wrapping the given short array.
wrap(short[], int, int) - Static method in class java.nio.ShortBuffer
Creates a new short buffer by wrapping the given short array.
wrap(ArrayBuffer) - Static method in class org.gwtproject.nio.TypedArrayHelper
 
A B C D E F G H I J L M N O P R S T U V W 
Skip navigation links

Copyright © 2020 Dmitrii Tikhomirov. All rights reserved.