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