public enum EdgeFlow extends Enum<EdgeFlow>
Enum Constant and Description |
---|
DOWN
Edge flow specifier which defines that the flow direction of most edges is down.
|
LEFT
Edge flow specifier which defines that the flow direction of most edges is left.
|
NONE
Edge flow specifier that defines that there is no main flow direction.
|
RIGHT
Edge flow specifier which defines that the flow direction of most edges is right.
|
UP
Edge flow specifier which defines that the flow direction of most edges is up.
|
Modifier and Type | Method and Description |
---|---|
static EdgeFlow |
fromOrdinal(int ordinal) |
int |
value() |
static EdgeFlow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeFlow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeFlow DOWN
public static final EdgeFlow LEFT
public static final EdgeFlow NONE
public static final EdgeFlow RIGHT
public static final EdgeFlow UP
public static final EdgeFlow fromOrdinal(int ordinal)
public int value()
public static EdgeFlow valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.public static EdgeFlow[] values()
for (EdgeFlow c : EdgeFlow.values()) System.out.println(c);