public enum SeriesSelectionMode extends Enum<SeriesSelectionMode>
Enum Constant and Description |
---|
DATA_POINT_MULTIPLE |
DATA_POINT_SINGLE |
NONE |
NOT_SET |
SERIES |
Modifier and Type | Method and Description |
---|---|
static SeriesSelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeriesSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeriesSelectionMode SERIES
public static final SeriesSelectionMode DATA_POINT_SINGLE
public static final SeriesSelectionMode DATA_POINT_MULTIPLE
public static final SeriesSelectionMode NONE
public static final SeriesSelectionMode NOT_SET
public static SeriesSelectionMode[] values()
for (SeriesSelectionMode c : SeriesSelectionMode.values()) System.out.println(c);
public static SeriesSelectionMode 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 null