| 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use DoubleBuffer | |
| java.nio | Defines buffers, which are containers for data, and provides an overview of the other NIO packages. | 
| Uses of DoubleBuffer in java.nio | 
| Methods in java.nio that return DoubleBuffer | |
static DoubleBuffer | 
DoubleBuffer.allocate(int capacity)
Allocates a new double buffer.  | 
static DoubleBuffer | 
DoubleBuffer.wrap(double[] array,
     int offset,
     int length)
Wraps a double array into a buffer.  | 
static DoubleBuffer | 
DoubleBuffer.wrap(double[] array)
Wraps a double array into a buffer.  | 
abstract  DoubleBuffer | 
DoubleBuffer.slice()
Creates a new double buffer whose content is a shared subsequence of this buffer's content.  | 
abstract  DoubleBuffer | 
DoubleBuffer.duplicate()
Creates a new double buffer that shares this buffer's content.  | 
abstract  DoubleBuffer | 
DoubleBuffer.asReadOnlyBuffer()
Creates a new, read-only double buffer that shares this buffer's content.  | 
abstract  DoubleBuffer | 
DoubleBuffer.put(double d)
Relative put method (optional operation).  | 
abstract  DoubleBuffer | 
DoubleBuffer.put(int index,
    double d)
Absolute put method (optional operation).  | 
 DoubleBuffer | 
DoubleBuffer.get(double[] dst,
    int offset,
    int length)
Relative bulk get method.  | 
 DoubleBuffer | 
DoubleBuffer.get(double[] dst)
Relative bulk get method.  | 
 DoubleBuffer | 
DoubleBuffer.put(DoubleBuffer src)
Relative bulk put method (optional operation).  | 
 DoubleBuffer | 
DoubleBuffer.put(double[] src,
    int offset,
    int length)
Relative bulk put method (optional operation).  | 
 DoubleBuffer | 
DoubleBuffer.put(double[] src)
Relative bulk put method (optional operation).  | 
abstract  DoubleBuffer | 
DoubleBuffer.compact()
Compacts this buffer (optional operation).  | 
abstract  DoubleBuffer | 
ByteBuffer.asDoubleBuffer()
Creates a view of this byte buffer as a double buffer.  | 
| Methods in java.nio with parameters of type DoubleBuffer | |
 DoubleBuffer | 
DoubleBuffer.put(DoubleBuffer src)
Relative bulk put method (optional operation).  | 
  | 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.