JavaTM 2 Platform
Std. Ed. v1.4.2

Uses of Class
java.nio.FloatBuffer

Packages that use FloatBuffer
java.nio Defines buffers, which are containers for data, and provides an overview of the other NIO packages. 
 

Uses of FloatBuffer in java.nio
 

Methods in java.nio that return FloatBuffer
static FloatBuffer FloatBuffer.allocate(int capacity)
          Allocates a new float buffer.
static FloatBuffer FloatBuffer.wrap(float[] array, int offset, int length)
          Wraps a float array into a buffer.
static FloatBuffer FloatBuffer.wrap(float[] array)
          Wraps a float array into a buffer.
abstract  FloatBuffer FloatBuffer.slice()
          Creates a new float buffer whose content is a shared subsequence of this buffer's content.
abstract  FloatBuffer FloatBuffer.duplicate()
          Creates a new float buffer that shares this buffer's content.
abstract  FloatBuffer FloatBuffer.asReadOnlyBuffer()
          Creates a new, read-only float buffer that shares this buffer's content.
abstract  FloatBuffer FloatBuffer.put(float f)
          Relative put method  (optional operation).
abstract  FloatBuffer FloatBuffer.put(int index, float f)
          Absolute put method  (optional operation).
 FloatBuffer FloatBuffer.get(float[] dst, int offset, int length)
          Relative bulk get method.
 FloatBuffer FloatBuffer.get(float[] dst)
          Relative bulk get method.
 FloatBuffer FloatBuffer.put(FloatBuffer src)
          Relative bulk put method  (optional operation).
 FloatBuffer FloatBuffer.put(float[] src, int offset, int length)
          Relative bulk put method  (optional operation).
 FloatBuffer FloatBuffer.put(float[] src)
          Relative bulk put method  (optional operation).
abstract  FloatBuffer FloatBuffer.compact()
          Compacts this buffer  (optional operation).
abstract  FloatBuffer ByteBuffer.asFloatBuffer()
          Creates a view of this byte buffer as a float buffer.
 

Methods in java.nio with parameters of type FloatBuffer
 FloatBuffer FloatBuffer.put(FloatBuffer src)
          Relative bulk put method  (optional operation).
 


JavaTM 2 Platform
Std. Ed. v1.4.2

Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Copyright © 2003, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.