Package com.anylogic.engine.analysis
          
          
- java.lang.Object
- com.anylogic.engine.analysis.DataUpdater_xjal
- All Implemented Interfaces:
- Serializable
@AnyLogicInternalCodegenAPI public class DataUpdater_xjal extends Object implements 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
| Constructor | Description | 
|---|---|
| DataUpdater_xjal() | 
| Modifier and Type | Method | Description | 
|---|---|---|
| double | getDataXValue() | Override this method to enable  BasicDataSet.add(double)method.Default implementation throws exception. | 
| void | update | Another way to override  BasicDataSet.update() | 
| void | update | Another way to override  Histogram2DData.update() | 
| void | update | Another way to override  HistogramData.update() | 
| void | update | Another way to override  StatisticsContinuous.update() | 
| void | update | Another way to override  StatisticsDiscrete.update() | 
public DataUpdater_xjal()
public void update(BasicDataSet ds) 
Another way to override 
BasicDataSet.update()- See Also:
public double getDataXValue()
Override this method to enable 
Default implementation throws exception.
BasicDataSet.add(double) method.Default implementation throws exception.
- Returns:
- the value of xto use when user callsBasicDataSet.add(double)
- See Also:
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()