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

Quick Search    Search Deep

Uses of Class
java.nio.DoubleBuffer

Uses of DoubleBuffer in java.nio
 

Subclasses of DoubleBuffer in java.nio
(package private)  class DoubleBufferImpl
          This is a Heap memory implementation
(package private)  class DoubleViewBufferImpl
           
 

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

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