| Enum Constant and Description |
|---|
Single
Specifies a single line.
|
ThickBetweenThin
Specifies a thick line with a thin line on each side.
|
ThickThin
Specifies a thick line next to a thin line.
|
ThinThick
Specifies a thick line next to a thin line.
|
ThinThin
Specifies two thin lines.
|
| Modifier and Type | Method and Description |
|---|---|
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 Single
public static final LineStyle ThinThin
public static final LineStyle ThinThick
public static final LineStyle ThickThin
public static final LineStyle ThickBetweenThin
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 null