public class FloatBuffer extends PersistentObject implements FloatBufferConsumer
| Constructor and Description | 
|---|
| FloatBuffer(FloatBufferConsumer target,
           int capacity)Constructs and returns a new buffer with the given target. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | add(float element)Adds the specified element to the receiver. | 
| void | addAllOf(FloatArrayList list)Adds all elements of the specified list to the receiver. | 
| void | clear()Sets the receiver's size to zero. | 
| void | flush()Adds all internally buffered elements to the receiver's target, then
 resets the current buffer size to zero. | 
clonepublic FloatBuffer(FloatBufferConsumer target, int capacity)
target - the target to flush to.capacity - the number of points the buffer shall be capable of holding
            before overflowing and flushing to the target.public void add(float element)
element - the element to add.public void addAllOf(FloatArrayList list)
addAllOf in interface FloatBufferConsumerlist - the list of which all elements shall be added.public void clear()
public void flush()
Jump to the Parallel Colt Homepage