public enum SeriesType extends Enum<SeriesType>
Enum Constant and Description |
---|
BUBBLE
Bubble: X, Y and size.
|
NO_VALUE
No-value.
|
OHLC
OHLC: Open-High-Low-Close and optionally mid.
|
SIMPLE
Simple array of numbers.
|
X_Y
X/Y values.
|
Modifier and Type | Method and Description |
---|---|
static SeriesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeriesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeriesType NO_VALUE
public static final SeriesType SIMPLE
public static final SeriesType X_Y
public static final SeriesType BUBBLE
public static final SeriesType OHLC
public static SeriesType[] values()
for (SeriesType c : SeriesType.values()) System.out.println(c);
public static SeriesType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nulliizi® is a registered trademark of Mindus SARL. © Copyright Mindus SARL, 2020. All rights reserved.