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