Package com.anylogic.engine.analysis
- java.lang.Object
-
- com.anylogic.engine.analysis.DataUpdater_xjal
- All Implemented Interfaces:
java.io.Serializable
@AnyLogicInternalCodegenAPI public class DataUpdater_xjal extends java.lang.Object implements java.io.Serializable
This class provides another way to override update() method of data set, histogram and other data elements. Subclass
should override one of methods and may be passed to appropriate constructor
of data element, e.g.
DataSet(int, DataUpdater_xjal)
- Author:
- AnyLogic North America, LLC https://anylogic.com
- See Also:
- Serialized Form
DataUpdater_xjal() |
|
Constructor | Description |
---|
double |
getDataXValue() |
Override this method to enable
DataSet.add(double) method.Default implementation throws exception. |
void |
update(DataSet ds) |
Another way to override
DataSet.update() |
void |
update(Histogram2DData data) |
Another way to override
Histogram2DData.update() |
void |
update(HistogramData data) |
Another way to override
HistogramData.update() |
void |
update(StatisticsContinuous statistics) |
Another way to override
StatisticsContinuous.update() |
void |
update(StatisticsDiscrete statistics) |
Another way to override
StatisticsDiscrete.update() |
Modifier and Type | Method | Description |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public DataUpdater_xjal()
public void update(DataSet ds)
Another way to override
DataSet.update()
- See Also:
DataSet(int, DataUpdater_xjal)
public double getDataXValue()
Override this method to enable
Default implementation throws exception.
DataSet.add(double)
method.Default implementation throws exception.
- Returns:
- the value of
x
to use when user callsDataSet.add(double)
- See Also:
DataSet(int, DataUpdater_xjal)
public void update(HistogramData data)
Another way to override
HistogramData.update()
public void update(Histogram2DData data)
Another way to override
Histogram2DData.update()
public void update(StatisticsContinuous statistics)
Another way to override
StatisticsContinuous.update()
public void update(StatisticsDiscrete statistics)
Another way to override
StatisticsDiscrete.update()
-
How can we improve this article?
-