Package de.gsi.dataset
Interface DataSet3D
-
- All Superinterfaces:
DataSet,DataSet2D,EventSource,java.io.Serializable
- All Known Implementing Classes:
AbstractDataSet3D,DoubleDataSet3D,Histogram2,TransposedDataSet.TransposedDataSet3D
public interface DataSet3D extends DataSet2D
ADataSetextension used to represent 3-dimensional data points.- Author:
- gkruk, rstein
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default intgetDimension()doublegetZ(int xIndex, int yIndex)Returns Z coordinate for the specified data point.-
Methods inherited from interface de.gsi.dataset.DataSet
get, getAxisDescription, getAxisDescriptions, getDataLabel, getIndex, getName, getStyle, getStyle, getValues, lock, recomputeLimits, setStyle
-
Methods inherited from interface de.gsi.dataset.DataSet2D
getDataCount, getDataCount, getValue, getValue, getX, getXIndex, getXValues, getY, getYIndex, getYValues
-
Methods inherited from interface de.gsi.dataset.event.EventSource
addListener, autoNotification, invokeListener, invokeListener, invokeListener, isAutoNotification, removeListener, updateEventListener
-
-
-
-
Method Detail
-
getDimension
default int getDimension()
- Specified by:
getDimensionin interfaceDataSet- Specified by:
getDimensionin interfaceDataSet2D- Returns:
- number of dimensions
-
getZ
double getZ(int xIndex, int yIndex)Returns Z coordinate for the specified data point.- Parameters:
xIndex- index of X coordinateyIndex- index of Y coordinate- Returns:
- Z coordinate
-
-