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