public enum MarkerStyle extends java.lang.Enum<MarkerStyle>
Enum Constant and Description |
---|
CIRCLE |
DASH |
DIAMOND |
DOT |
NONE |
PICTURE |
PLUS |
SQUARE |
STAR |
TRIANGLE |
X |
Modifier and Type | Method and Description |
---|---|
static MarkerStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MarkerStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkerStyle CIRCLE
public static final MarkerStyle DASH
public static final MarkerStyle DIAMOND
public static final MarkerStyle DOT
public static final MarkerStyle NONE
public static final MarkerStyle PICTURE
public static final MarkerStyle PLUS
public static final MarkerStyle SQUARE
public static final MarkerStyle STAR
public static final MarkerStyle TRIANGLE
public static final MarkerStyle X
public static MarkerStyle[] values()
for (MarkerStyle c : MarkerStyle.values()) System.out.println(c);
public static MarkerStyle 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.