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