public static enum Line.Dash extends Enum<Line.Dash>
Enum Constant and Description |
---|
DASH |
DASH_DOT |
DOT |
LONG_DASH |
LONG_DASH_DOT |
SOLID |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Line.Dash |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Line.Dash[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Line.Dash SOLID
public static final Line.Dash DASH
public static final Line.Dash DOT
public static final Line.Dash LONG_DASH
public static final Line.Dash LONG_DASH_DOT
public static final Line.Dash DASH_DOT
public static Line.Dash[] values()
for (Line.Dash c : Line.Dash.values()) System.out.println(c);
public static Line.Dash valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.