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