Uses of Class
java.nio.IntBuffer

Packages that use IntBuffer
Package Description
java.nio  
org.robovm.rt.bro  
org.robovm.rt.bro.ptr  
  • Uses of IntBuffer in java.nio

    Methods in java.nio that return IntBuffer
    Modifier and Type Method Description
    static IntBuffer IntBuffer.allocate​(int capacity)
    Creates an int buffer based on a newly allocated int array.
    abstract IntBuffer ByteBuffer.asIntBuffer()
    Returns a int buffer which is based on the remaining content of this byte buffer.
    abstract IntBuffer IntBuffer.asReadOnlyBuffer()
    Returns a read-only buffer that shares its content with this buffer.
    abstract IntBuffer IntBuffer.compact()
    Compacts this int buffer.
    abstract IntBuffer IntBuffer.duplicate()
    Returns a duplicated buffer that shares its content with this buffer.
    IntBuffer IntBuffer.get​(int[] dst)
    Reads ints from the current position into the specified int array and increases the position by the number of ints read.
    IntBuffer IntBuffer.get​(int[] dst, int dstOffset, int intCount)
    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 IntBuffer IntBuffer.put​(int i)
    Writes the given int to the current position and increases the position by 1.
    IntBuffer IntBuffer.put​(int[] src)
    Writes ints from the given int array to the current position and increases the position by the number of ints written.
    IntBuffer IntBuffer.put​(int[] src, int srcOffset, int intCount)
    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 IntBuffer IntBuffer.put​(int index, int i)
    Write a int to the specified index of this buffer; the position is not changed.
    IntBuffer IntBuffer.put​(IntBuffer src)
    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 IntBuffer IntBuffer.slice()
    Returns a sliced buffer that shares its content with this buffer.
    static IntBuffer IntBuffer.wrap​(int[] array)
    Creates a new int buffer by wrapping the given int array.
    static IntBuffer IntBuffer.wrap​(int[] array, int start, int intCount)
    Creates a new int buffer by wrapping the given int array.
    Methods in java.nio with parameters of type IntBuffer
    Modifier and Type Method Description
    int IntBuffer.compareTo​(IntBuffer otherBuffer)
    Compares the remaining ints of this buffer to another int buffer's remaining ints.
    IntBuffer IntBuffer.put​(IntBuffer src)
    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.
  • Uses of IntBuffer in org.robovm.rt.bro

    Methods in org.robovm.rt.bro that return IntBuffer
    Modifier and Type Method Description
    static IntBuffer BufferMarshalers.BufferMarshaler.toIntBuffer​(Class<?> cls, long handle, long flags, int d1)  
    static IntBuffer BufferMarshalers.BufferMarshaler.toIntBuffer​(Class<?> cls, long handle, long flags, int d1, int d2)  
    static IntBuffer BufferMarshalers.BufferMarshaler.toIntBuffer​(Class<?> cls, long handle, long flags, int d1, int d2, int d3)  
    Methods in org.robovm.rt.bro with parameters of type IntBuffer
    Modifier and Type Method Description
    static void BufferMarshalers.BufferMarshaler.toNative​(IntBuffer buffer, long handle, long flags, int d1)  
    static void BufferMarshalers.BufferMarshaler.toNative​(IntBuffer buffer, long handle, long flags, int d1, int d2)  
    static void BufferMarshalers.BufferMarshaler.toNative​(IntBuffer buffer, long handle, long flags, int d1, int d2, int d3)  
  • Uses of IntBuffer in org.robovm.rt.bro.ptr

    Methods in org.robovm.rt.bro.ptr that return IntBuffer
    Modifier and Type Method Description
    IntBuffer IntPtr.asIntBuffer​(int n)
    Returns a IntBuffer which reads and writes to the same memory location pointed to by this IntPtr.
    IntBuffer MachineSizedSIntPtr.asIntBuffer​(int n)
    Returns a IntBuffer which reads and writes to the same memory location pointed to by this MachineSizedSIntPtr.
    IntBuffer MachineSizedUIntPtr.asIntBuffer​(int n)
    Returns a IntBuffer which reads and writes to the same memory location pointed to by this MachineSizedUIntPtr.