public enum ScatterStyle extends java.lang.Enum<ScatterStyle>
Enum Constant and Description |
---|
LINE |
LINE_MARKER |
MARKER |
NONE |
SMOOTH |
SMOOTH_MARKER |
Modifier and Type | Method and Description |
---|---|
static ScatterStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScatterStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScatterStyle LINE
public static final ScatterStyle LINE_MARKER
public static final ScatterStyle MARKER
public static final ScatterStyle NONE
public static final ScatterStyle SMOOTH
public static final ScatterStyle SMOOTH_MARKER
public static ScatterStyle[] values()
for (ScatterStyle c : ScatterStyle.values()) System.out.println(c);
public static ScatterStyle 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 nullCopyright 2020 The Apache Software Foundation or its licensors, as applicable.