public enum SeriesType extends java.lang.Enum<SeriesType> implements com.haulmont.chile.core.datatypes.impl.EnumClass<java.lang.String>
Enum Constant and Description |
---|
COLUMN |
LINE |
SMOOTHED_LINE |
STEP |
Modifier and Type | Method and Description |
---|---|
static SeriesType |
fromId(java.lang.String id) |
java.lang.String |
getId() |
static SeriesType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SeriesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeriesType LINE
public static final SeriesType COLUMN
public static final SeriesType STEP
public static final SeriesType SMOOTHED_LINE
public static SeriesType[] values()
for (SeriesType c : SeriesType.values()) System.out.println(c);
public static 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 nullpublic java.lang.String getId()
getId
in interface com.haulmont.chile.core.datatypes.impl.EnumClass<java.lang.String>
public static SeriesType fromId(java.lang.String id)