| Enum Constant and Description |
|---|
DASH_SMALL_GAP |
DASHED |
DOT_DASH |
DOT_DOT_DASH |
DOTTED |
DOUBLE |
DOUBLE_WAVE |
NONE |
SINGLE |
TRIPLE |
WAVE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCode() |
static LineStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineStyle NONE
public static final LineStyle SINGLE
public static final LineStyle DOUBLE
public static final LineStyle TRIPLE
public static final LineStyle DOTTED
public static final LineStyle DOT_DASH
public static final LineStyle DASHED
public static final LineStyle DOT_DOT_DASH
public static final LineStyle DASH_SMALL_GAP
public static final LineStyle WAVE
public static final LineStyle DOUBLE_WAVE
public static LineStyle[] values()
for (LineStyle c : LineStyle.values()) System.out.println(c);
public static LineStyle 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 nullpublic java.lang.String getCode()