public static enum EdgeLabel.Directionality extends java.lang.Enum<EdgeLabel.Directionality>
| Enum Constant and Description |
|---|
Bidirectional
Edges are traversable in both directions.
|
Unidirectional
Edges are traversable in only one direction.
|
| Modifier and Type | Method and Description |
|---|---|
static EdgeLabel.Directionality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdgeLabel.Directionality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeLabel.Directionality Bidirectional
public static final EdgeLabel.Directionality Unidirectional
public static EdgeLabel.Directionality[] values()
for (EdgeLabel.Directionality c : EdgeLabel.Directionality.values()) System.out.println(c);
public static EdgeLabel.Directionality 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 null