The members of Java.Nio.LongBuffer are listed below.
See Also: Inherited members from Java.Nio.Buffer
A constructor used when creating managed representations of JNI objects; called by the runtime. |
[read-only] override | ThresholdClass | IntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
[read-only] override | ThresholdType | Type. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
static | Allocate(int)Creates a long buffer based on a newly allocated long 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 long buffer. | |
CompareTo(LongBuffer)Compare the remaining longs of this buffer to another long buffer's remaining longs. | ||
abstract | Duplicate()Returns a duplicated buffer that shares its content with this buffer. | |
abstract | Get()Returns the long at the current position and increase the position by 1. | |
abstract | Get(int)Returns the long at the specified index; the position is not changed. | |
Get(long[])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)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()Returns the byte order used by this buffer when converting longs from/to bytes. | |
Put(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)Writes the given long to the current position and increases the position by 1. | |
Put(long[])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)Writes a long to the specified index of this buffer; the position is not changed. | |
Put(long[], int, int)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()Returns a sliced buffer that shares its content with this buffer. | |
static | Wrap(long[])Creates a new long buffer by wrapping the given long array. | |
static | Wrap(long[], int, int)Creates a new long buffer by wrapping the given long array. |
Java.Lang.IComparable.CompareTo | Documentation for this section has not yet been entered. |