| 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use IntBuffer | |
| java.nio | Defines buffers, which are containers for data, and provides an overview of the other NIO packages. | 
| Uses of IntBuffer in java.nio | 
| Methods in java.nio that return IntBuffer | |
static IntBuffer | 
IntBuffer.allocate(int capacity)
Allocates a new int buffer.  | 
static IntBuffer | 
IntBuffer.wrap(int[] array,
     int offset,
     int length)
Wraps a int array into a buffer.  | 
static IntBuffer | 
IntBuffer.wrap(int[] array)
Wraps a int array into a buffer.  | 
abstract  IntBuffer | 
IntBuffer.slice()
Creates a new int buffer whose content is a shared subsequence of this buffer's content.  | 
abstract  IntBuffer | 
IntBuffer.duplicate()
Creates a new int buffer that shares this buffer's content.  | 
abstract  IntBuffer | 
IntBuffer.asReadOnlyBuffer()
Creates a new, read-only int buffer that shares this buffer's content.  | 
abstract  IntBuffer | 
IntBuffer.put(int i)
Relative put method (optional operation).  | 
abstract  IntBuffer | 
IntBuffer.put(int index,
    int i)
Absolute put method (optional operation).  | 
 IntBuffer | 
IntBuffer.get(int[] dst,
    int offset,
    int length)
Relative bulk get method.  | 
 IntBuffer | 
IntBuffer.get(int[] dst)
Relative bulk get method.  | 
 IntBuffer | 
IntBuffer.put(IntBuffer src)
Relative bulk put method (optional operation).  | 
 IntBuffer | 
IntBuffer.put(int[] src,
    int offset,
    int length)
Relative bulk put method (optional operation).  | 
 IntBuffer | 
IntBuffer.put(int[] src)
Relative bulk put method (optional operation).  | 
abstract  IntBuffer | 
IntBuffer.compact()
Compacts this buffer (optional operation).  | 
abstract  IntBuffer | 
ByteBuffer.asIntBuffer()
Creates a view of this byte buffer as an int buffer.  | 
| Methods in java.nio with parameters of type IntBuffer | |
 IntBuffer | 
IntBuffer.put(IntBuffer 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.