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