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