public enum EdgesDirection extends java.lang.Enum<EdgesDirection>
Enum Constant and Description |
---|
Any
In-going or out-going edges.
|
Ingoing
In-going edges.
|
Outgoing
Out-going edges.
|
Modifier and Type | Method and Description |
---|---|
static EdgesDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdgesDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgesDirection Ingoing
In-going edges.
public static final EdgesDirection Outgoing
Out-going edges.
public static final EdgesDirection Any
In-going or out-going edges.
public static EdgesDirection[] values()
for (EdgesDirection c : EdgesDirection.values()) System.out.println(c);
public static EdgesDirection 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