public class FwkColumnDataObserverDoubleImplicit extends FwkColumnDataObserver
Modifier and Type | Field and Description |
---|---|
protected int |
count |
protected double[] |
values |
changeManager, flags, globalFlag, globalFlagValid, suspended
Modifier | Constructor and Description |
---|---|
protected |
FwkColumnDataObserverDoubleImplicit()
The constructor that receives the values.
|
|
FwkColumnDataObserverDoubleImplicit(double[] values,
int count)
The constructor that receives the values.
|
|
FwkColumnDataObserverDoubleImplicit(double[] values,
short[] flags,
int count)
The constructor that receives the values and the flags.
|
|
FwkColumnDataObserverDoubleImplicit(double[] values,
short flag,
int count)
The constructor that receives the values and a global flag.
|
Modifier and Type | Method and Description |
---|---|
int |
getCount()
The the value count.
|
java.lang.Class |
getNativeDatatype()
Get the data type of inner values.
|
java.lang.Object |
getNativeValues()
Get the inner values.
|
java.lang.Object |
getNativeValues(int lower,
int upper)
Get a range of the inner values.
|
double |
getValueAt(int index)
Get a data value.
|
void |
release()
Request to release data.
|
void |
setFlagAt(int index,
short flag)
Set a flag
|
void |
setValueAt(int index,
double value)
Set a value
|
addDataItemChangeListener, createScale, getFlagAt, getScale, isChangeManagerSuspended, isImplicit, removeDataItemChangeListener, setScale, suspendChangeManager
protected FwkColumnDataObserverDoubleImplicit()
values
- the values.public FwkColumnDataObserverDoubleImplicit(double[] values, int count)
values
- the values.public FwkColumnDataObserverDoubleImplicit(double[] values, short[] flags, int count)
values
- the values.flags
- the flags.public FwkColumnDataObserverDoubleImplicit(double[] values, short flag, int count)
values
- the values.flag
- the global flag.public void release()
release
in interface FwkColumnDataObserverInterface
release
in class FwkColumnDataObserver
public void setFlagAt(int index, short flag)
setFlagAt
in interface FwkColumnDataObserverInterface
setFlagAt
in class FwkColumnDataObserver
index
- the index of the flag to changed.flag
- the new flag.FwkColumnAccessInterface
public double getValueAt(int index)
index
- The index of the value.public void setValueAt(int index, double value)
index
- the index of the value to changed.value
- the new value.public int getCount()
public java.lang.Class getNativeDatatype()
public java.lang.Object getNativeValues()
public java.lang.Object getNativeValues(int lower, int upper)
lower
- the lower index of the range of interest.upper
- the upper index of the range of interest.