public static enum Style.Node extends Enum<Style.Node>
| Enum Constant and Description |
|---|
bold |
dashed |
diagonals |
dotted |
filled |
invis |
rounded |
solid |
striped |
wedged |
| Modifier and Type | Method and Description |
|---|---|
static Style.Node |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.Node[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.Node solid
public static final Style.Node dashed
public static final Style.Node dotted
public static final Style.Node bold
public static final Style.Node rounded
public static final Style.Node diagonals
public static final Style.Node filled
public static final Style.Node striped
public static final Style.Node wedged
public static final Style.Node invis
public static Style.Node[] values()
for (Style.Node c : Style.Node.values()) System.out.println(c);
public static Style.Node 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 © 2013. All Rights Reserved.