Class IndexableDataArray<T>
java.lang.Object
com.illumon.iris.db.plot.datasets.data.IndexableData<T>
com.illumon.iris.db.plot.datasets.data.IndexableDataArray<T>
- All Implemented Interfaces:
PlotExceptionCause
,Serializable
public class IndexableDataArray<T> extends IndexableData<T>
IndexableData
dataset backed by an array.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description IndexableDataArray(T[] data, PlotInfo plotInfo)
Creates an IndexableDataArray instance. -
Method Summary
Methods inherited from class com.illumon.iris.db.plot.datasets.data.IndexableData
getPlotInfo, onClose, snapshot
-
Constructor Details
-
IndexableDataArray
Creates an IndexableDataArray instance.- Parameters:
data
- dataplotInfo
- plot information- Throws:
com.fishlib.base.verify.RequirementFailure
-data
must not be null
-
-
Method Details
-
size
public int size()Description copied from class:IndexableData
Gets the size of this dataset.- Specified by:
size
in classIndexableData<T>
- Returns:
- the size of this dataset
-
get
Description copied from class:IndexableData
Gets the value at the given index.- Specified by:
get
in classIndexableData<T>
- Parameters:
index
- index- Returns:
- value of this dataset at
index
-