java.lang.Object | +--java.nio.Buffer | +--java.nio.LongBufferAll Implemented Interfaces:
long[] | backing_buffer |
static java.nio.LongBuffer | allocate(int capacity) |
static java.nio.LongBuffer | allocateDirect(int capacity) |
long[] | array() |
int | arrayOffset() |
java.nio.LongBuffer | asReadOnlyBuffer() |
java.nio.LongBuffer | compact() |
int | compareTo(java.lang.Object ob) |
java.nio.LongBuffer | duplicate() |
boolean | equals(java.lang.Object obj) |
java.nio.LongBuffer | get(long[] dst, int offset, int length) |
java.nio.LongBuffer | get(long[] dst) |
long | get() |
long | get(int index) |
boolean | hasArray() |
int | hashCode() |
boolean | isDirect() |
java.nio.ByteOrder | order() |
java.nio.LongBuffer | order(java.nio.ByteOrder bo) |
java.nio.LongBuffer | put(java.nio.LongBuffer src) |
java.nio.LongBuffer | put(long[] src, int offset, int length) |
java.nio.LongBuffer | put(long[] src) |
java.nio.LongBuffer | put(long b) |
java.nio.LongBuffer | put(int index, long b) |
java.nio.LongBuffer | slice() |
static java.nio.LongBuffer | wrap(long[] array, int offset, int length) |
static java.nio.LongBuffer | wrap(java.lang.String a) |
static java.nio.LongBuffer | wrap(long[] array) |
protected long[] backing_bufferpublic static LongBuffer allocate(int capacity)Parameters:capacity - public static LongBuffer allocateDirect(int capacity)Parameters:capacity - public final long[] array()public final int arrayOffset()public LongBuffer asReadOnlyBuffer()public LongBuffer compact()public int compareTo(java.lang.Object ob)Parameters:ob - public LongBuffer duplicate()public boolean equals(java.lang.Object obj)Parameters:obj - public long get()public long get(int index)Parameters:index - public LongBuffer get(long[] dst)Parameters:dst - public LongBuffer get(long[] dst, int offset, int length)Parameters:dst - offset - length - public final boolean hasArray()public int hashCode()public boolean isDirect()public ByteOrder order()public final LongBuffer order(java.nio.ByteOrder bo)Parameters:bo - public LongBuffer put(int index, long b)Parameters:index - b - public LongBuffer put(java.nio.LongBuffer src)Parameters:src - public final LongBuffer put(long[] src)Parameters:src - public LongBuffer put(long b)Parameters:b - public LongBuffer put(long[] src, int offset, int length)Parameters:src - offset - length - public LongBuffer slice()public static final LongBuffer wrap(java.lang.String a)Parameters:a - public static final LongBuffer wrap(long[] array)Parameters:array - public static final LongBuffer wrap(long[] array, int offset, int length)Parameters:array - offset - length -