Package de.gsi.dataset
Interface DataSet3D
-
- All Superinterfaces:
DataSet,DataSet2D,EventSource,java.io.Serializable
- All Known Implementing Classes:
AbstractDataSet3D,DoubleDataSet3D,TransposedDataSet.TransposedDataSet3D
@Deprecated(since="11.1.4", forRemoval=true) public interface DataSet3D extends DataSet2DDeprecated, for removal: This API element is subject to removal in a future version.No need to implement this anymore as the DataSet interface was generalized to multiple dimensions.ADataSetextension used to represent 3-dimensional data points.- Author:
- gkruk, rstein
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default intgetDimension()Deprecated, for removal: This API element is subject to removal in a future version.doublegetZ(int xIndex, int yIndex)Deprecated, for removal: This API element is subject to removal in a future version.Returns Z coordinate for the specified data point.-
Methods inherited from interface de.gsi.dataset.DataSet
get, getAxisDescription, getAxisDescriptions, getDataCount, getDataCount, getDataLabel, getIndex, getName, getStyle, getStyle, getValues, lock, recomputeLimits, setStyle
-
Methods inherited from interface de.gsi.dataset.DataSet2D
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()
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
getDimensionin interfaceDataSet- Specified by:
getDimensionin interfaceDataSet2D- Returns:
- number of dimensions
-
getZ
double getZ(int xIndex, int yIndex)Deprecated, for removal: This API element is subject to removal in a future version.Returns Z coordinate for the specified data point.- Parameters:
xIndex- index of X coordinateyIndex- index of Y coordinate- Returns:
- Z coordinate
-
-