Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.nio.IntBuffer

Uses of IntBuffer in java.nio
 

Subclasses of IntBuffer in java.nio
(package private)  class IntBufferImpl
          This is a Heap memory implementation
(package private)  class IntViewBufferImpl
           
 

Methods in java.nio that return IntBuffer
 IntBuffer MappedByteBufferImpl.asIntBuffer()
           
 IntBuffer IntViewBufferImpl.put(int value)
           
 IntBuffer IntViewBufferImpl.put(int index, int value)
           
 IntBuffer IntViewBufferImpl.compact()
           
 IntBuffer IntViewBufferImpl.slice()
           
(package private)  IntBuffer IntViewBufferImpl.duplicate(boolean readOnly)
           
 IntBuffer IntViewBufferImpl.duplicate()
           
 IntBuffer IntViewBufferImpl.asReadOnlyBuffer()
           
 IntBuffer IntBufferImpl.slice()
           
 IntBuffer IntBufferImpl.duplicate()
           
 IntBuffer IntBufferImpl.asReadOnlyBuffer()
           
 IntBuffer IntBufferImpl.compact()
           
 IntBuffer IntBufferImpl.put(int value)
          Relative put method.
 IntBuffer IntBufferImpl.put(int index, int value)
          Absolute put method.
 IntBuffer DirectByteBufferImpl.asIntBuffer()
           
 IntBuffer ByteBufferImpl.asIntBuffer()
           
abstract  IntBuffer ByteBuffer.asIntBuffer()
          Creates a view of this byte buffer as an integer buffer.
static IntBuffer IntBuffer.allocate(int capacity)
          Allocates a new IntBuffer object with a given capacity.
static IntBuffer IntBuffer.wrap(int[] array, int offset, int length)
          Wraps a int array into a IntBuffer object.
static IntBuffer IntBuffer.wrap(int[] array)
          Wraps a int array into a IntBuffer object.
 IntBuffer IntBuffer.get(int[] dst, int offset, int length)
          This method transfers ints from this buffer into the given destination array.
 IntBuffer IntBuffer.get(int[] dst)
          This method transfers ints from this buffer into the given destination array.
 IntBuffer IntBuffer.put(IntBuffer src)
          Writes the content of the the IntBUFFER src into the buffer.
 IntBuffer IntBuffer.put(int[] src, int offset, int length)
          Writes the content of the the int array src into the buffer.
 IntBuffer IntBuffer.put(int[] src)
          Writes the content of the the int array src into the buffer.
abstract  IntBuffer IntBuffer.put(int b)
          Writes the int at this buffer's current position, and then increments the position.
abstract  IntBuffer IntBuffer.put(int index, int b)
          Absolute put method.
abstract  IntBuffer IntBuffer.compact()
          Compacts this buffer.
abstract  IntBuffer IntBuffer.slice()
          Creates a new IntBuffer whose content is a shared subsequence of this buffer's content.
abstract  IntBuffer IntBuffer.duplicate()
          Creates a new IntBuffer that shares this buffer's content.
abstract  IntBuffer IntBuffer.asReadOnlyBuffer()
          Creates a new read-only IntBuffer that shares this buffer's content.
 

Methods in java.nio with parameters of type IntBuffer
 IntBuffer IntBuffer.put(IntBuffer src)
          Writes the content of the the IntBUFFER src into the buffer.