The methods of Java.Nio.IntBuffer are listed below. For a list of all members, see the IntBuffer Members list.
See Also: Inherited members from Java.Nio.Buffer
static | Allocate(int)Creates an int buffer based on a newly allocated int array. | |
override | ArrayOffset()Returns the offset into the array returned by array of the first element of the buffer (optional operation). | |
abstract | AsReadOnlyBuffer()Returns a read-only buffer that shares its content with this buffer. | |
abstract | Compact()Compacts this int buffer. | |
CompareTo(IntBuffer)Compares the remaining ints of this buffer to another int buffer's remaining ints. | ||
abstract | Duplicate()Returns a duplicated buffer that shares its content with this buffer. | |
abstract | Get()Returns the int at the current position and increases the position by 1. | |
abstract | Get(int)Returns an int at the specified index; the position is not changed. | |
Get(int[])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)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. | ||
abstract | Order()Returns the byte order used by this buffer when converting ints from/to bytes. | |
Put(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. | ||
abstract | Put(int)Writes the given int to the current position and increases the position by 1. | |
Put(int[])Writes ints from the given int array to the current position and increases the position by the number of ints written. | ||
abstract | Put(int, int)Write a int to the specified index of this buffer; the position is not changed. | |
Put(int[], int, int)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. | ||
abstract | Slice()Returns a sliced buffer that shares its content with this buffer. | |
static | Wrap(int[])Creates a new int buffer by wrapping the given int array. | |
static | Wrap(int[], int, int)Creates a new int buffer by wrapping the given int array. |