Java.Nio.LongBuffer Members

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

Explicitly Implemented Interface Members

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