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