Package cern.colt.buffer
Class IntBuffer
- java.lang.Object
-
- cern.colt.PersistentObject
-
- cern.colt.buffer.IntBuffer
-
- All Implemented Interfaces:
IntBufferConsumer
,java.io.Serializable
,java.lang.Cloneable
public class IntBuffer extends PersistentObject implements IntBufferConsumer
Fixed sized (non resizable) streaming buffer connected to a target IntBufferConsumer to which data is automatically flushed upon buffer overflow.- Version:
- 1.0, 09/24/99
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected int
capacity
protected int[]
elements
protected IntArrayList
list
protected int
size
protected IntBufferConsumer
target
-
Fields inherited from class cern.colt.PersistentObject
serialVersionUID
-
-
Constructor Summary
Constructors Constructor Description IntBuffer(IntBufferConsumer target, int capacity)
Constructs and returns a new buffer with the given target.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int element)
Adds the specified element to the receiver.void
addAllOf(IntArrayList 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.-
Methods inherited from class cern.colt.PersistentObject
clone
-
-
-
-
Field Detail
-
target
protected IntBufferConsumer target
-
elements
protected int[] elements
-
list
protected IntArrayList list
-
capacity
protected int capacity
-
size
protected int size
-
-
Constructor Detail
-
IntBuffer
public IntBuffer(IntBufferConsumer target, int capacity)
Constructs and returns a new buffer with the given target.- Parameters:
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.
-
-
Method Detail
-
add
public void add(int element)
Adds the specified element to the receiver.- Parameters:
element
- the element to add.
-
addAllOf
public void addAllOf(IntArrayList list)
Adds all elements of the specified list to the receiver.- Specified by:
addAllOf
in interfaceIntBufferConsumer
- Parameters:
list
- the list of which all elements shall be added.
-
clear
public void clear()
Sets the receiver's size to zero. In other words, forgets about any internally buffered elements.
-
flush
public void flush()
Adds all internally buffered elements to the receiver's target, then resets the current buffer size to zero.
-
-