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

Quick Search    Search Deep

Uses of Class
java.nio.FloatBuffer

Uses of FloatBuffer in java.nio
 

Subclasses of FloatBuffer in java.nio
(package private)  class FloatBufferImpl
          This is a Heap memory implementation
(package private)  class FloatViewBufferImpl
           
 

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

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