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