Plotting
Class Data<E>
java.lang.Object
Plotting.Data<E>
public class Data<E>
- extends java.lang.Object
Class containing data for a point.
E template parameter is the type of data, eg, Integer, Float, Double
etc. The number of tuples in the data point are specified implicitly
using one of the constructors.
Field Summary |
private java.util.List<E> |
mData
List containing the tuples comprising the data point |
Constructor Summary |
Data(E[] data)
|
Data(E[] data,
int from,
int to)
|
Data(int num)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
mData
private java.util.List<E> mData
- List containing the tuples comprising the data point
Data
public Data(int num)
Data
public Data(E[] data)
Data
public Data(E[] data,
int from,
int to)
GetDataAsArray
public java.lang.Object[] GetDataAsArray()
GetData
public java.util.List<E> GetData()
GetDataDimension
public int GetDataDimension()