public enum MarkerStyle extends java.lang.Enum<MarkerStyle>
| Enum Constant and Description |
|---|
Automatic
Specifies automatic markers.
|
Circle
Specifies circular markers.
|
Dash
Specifies long bar markers.
|
Diamond
Specifies diamond-shaped markers.
|
Dot
Specifies short bar markers.
|
None
Specifies no markers.
|
Picture
Specifies picture markers.
|
Plus
Specifies square markers with a plus sign.
|
Square
Specifies square markers.
|
Star
Specifies square markers with an asterisk.
|
Triangle
Specifies triangular markers.
|
X
Specifies square markers with an 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 Automatic
public static final MarkerStyle None
public static final MarkerStyle X
public static final MarkerStyle Picture
public static final MarkerStyle Dot
public static final MarkerStyle Dash
public static final MarkerStyle Square
public static final MarkerStyle Diamond
public static final MarkerStyle Triangle
public static final MarkerStyle Star
public static final MarkerStyle Circle
public static final MarkerStyle Plus
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 null