public enum ScatterType extends java.lang.Enum<ScatterType>
LineSeries
can have.Enum Constant and Description |
---|
Circle |
Diamond |
None |
Square |
Triangle |
Modifier and Type | Method and Description |
---|---|
static ScatterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScatterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScatterType Circle
public static final ScatterType Diamond
public static final ScatterType None
public static final ScatterType Square
public static final ScatterType Triangle
public static ScatterType[] values()
for (ScatterType c : ScatterType.values()) System.out.println(c);
public static ScatterType 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