public static enum ISeries.SeriesType extends java.lang.Enum<ISeries.SeriesType>
Modifier and Type | Field | Description |
---|---|---|
java.lang.String |
label |
the label for series type
|
Modifier and Type | Method | Description |
---|---|---|
static ISeries.SeriesType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ISeries.SeriesType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ISeries.SeriesType LINE
public static final ISeries.SeriesType BAR
public static ISeries.SeriesType[] values()
for (ISeries.SeriesType c : ISeries.SeriesType.values()) System.out.println(c);
public static ISeries.SeriesType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null