Class Buffer
java.lang.Object
cern.colt.PersistentObject
cern.jet.stat.quantile.Buffer
- All Implemented Interfaces:
Serializable, Cloneable
- Direct Known Subclasses:
DoubleBuffer
A buffer holding elements; internally used for computing approximate quantiles.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanprotected intprotected intprotected intFields inherited from class PersistentObject
serialVersionUID -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidclear()Clears the receiver.booleanReturns whether the receiver is already allocated.abstract booleanisEmpty()Returns whether the receiver is empty.abstract booleanisFull()Returns whether the receiver is empty.booleanReturns whether the receiver is partial.intlevel()Returns whether the receiver's level.voidlevel(int level) Sets the receiver's level.abstract intsize()Returns the number of elements contained in the receiver.abstract voidsort()Sorts the receiver.intweight()Returns whether the receiver's weight.voidweight(int weight) Sets the receiver's weight.Methods inherited from class PersistentObject
clone
-
Field Details
-
weight
protected int weight -
level
protected int level -
k
protected int k -
isAllocated
protected boolean isAllocated
-
-
Constructor Details
-
Buffer
public Buffer(int k) This method was created in VisualAge.- Parameters:
k- int
-
-
Method Details
-
clear
public abstract void clear()Clears the receiver. -
isAllocated
public boolean isAllocated()Returns whether the receiver is already allocated. -
isEmpty
public abstract boolean isEmpty()Returns whether the receiver is empty. -
isFull
public abstract boolean isFull()Returns whether the receiver is empty. -
isPartial
public boolean isPartial()Returns whether the receiver is partial. -
level
public int level()Returns whether the receiver's level. -
level
public void level(int level) Sets the receiver's level. -
size
public abstract int size()Returns the number of elements contained in the receiver. -
sort
public abstract void sort()Sorts the receiver. -
weight
public int weight()Returns whether the receiver's weight. -
weight
public void weight(int weight) Sets the receiver's weight.
-