public static enum AbstractSeries.SymbolType extends Enum<AbstractSeries.SymbolType>
Enum Constant and Description |
---|
circle |
cross |
diamond |
square |
triangle |
Modifier and Type | Method and Description |
---|---|
static AbstractSeries.SymbolType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractSeries.SymbolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractSeries.SymbolType circle
public static final AbstractSeries.SymbolType square
public static final AbstractSeries.SymbolType diamond
public static final AbstractSeries.SymbolType triangle
public static final AbstractSeries.SymbolType cross
public static AbstractSeries.SymbolType[] values()
for (AbstractSeries.SymbolType c : AbstractSeries.SymbolType.values()) System.out.println(c);
public static AbstractSeries.SymbolType 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 nullCopyright © 2014 JBoss by Red Hat. All rights reserved.