Java.Nio.IntBuffer Members

The members of Java.Nio.IntBuffer are listed below.

See Also: Inherited members from Java.Nio.Buffer

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Public Properties

[read-only]
override
HasArraybool. Returns true if array and arrayOffset won't throw.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

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

Explicitly Implemented Interface Members

Java.Lang.IComparable.CompareToDocumentation for this section has not yet been entered.