public enum DataSeriesType extends java.lang.Enum<DataSeriesType>
IDataSeries
Enum Constant and Description |
---|
Heatmap
The
IDataSeries contains the data from 2D array |
Hl
The
IDataSeries contains the XyError data |
Ohlc
The
IDataSeries contains the OHLC data |
Xy
The
IDataSeries contains the Xy data |
Xyy
The
IDataSeries contains the Xyy data |
Xyz
The
IDataSeries contains the Xyz data |
Modifier and Type | Method and Description |
---|---|
static DataSeriesType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataSeriesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSeriesType Xy
IDataSeries
contains the Xy datapublic static final DataSeriesType Xyy
IDataSeries
contains the Xyy datapublic static final DataSeriesType Xyz
IDataSeries
contains the Xyz datapublic static final DataSeriesType Hl
IDataSeries
contains the XyError datapublic static final DataSeriesType Ohlc
IDataSeries
contains the OHLC datapublic static final DataSeriesType Heatmap
IDataSeries
contains the data from 2D arraypublic static DataSeriesType[] values()
for (DataSeriesType c : DataSeriesType.values()) System.out.println(c);
public static DataSeriesType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null