public static enum GraphUtils.CheckRoutingCycleType extends java.lang.Enum<GraphUtils.CheckRoutingCycleType>
| Enum Constant and Description |
|---|
NO_CHECK
Routing cycles are not checked.
|
NO_REPEAT_LINK
No link is traversed more than one.
|
NO_REPEAT_NODE
No node is traversed more than one.
|
| Modifier and Type | Method and Description |
|---|---|
static GraphUtils.CheckRoutingCycleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphUtils.CheckRoutingCycleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphUtils.CheckRoutingCycleType NO_CHECK
public static final GraphUtils.CheckRoutingCycleType NO_REPEAT_NODE
public static final GraphUtils.CheckRoutingCycleType NO_REPEAT_LINK
public static GraphUtils.CheckRoutingCycleType[] values()
for (GraphUtils.CheckRoutingCycleType c : GraphUtils.CheckRoutingCycleType.values()) System.out.println(c);
public static GraphUtils.CheckRoutingCycleType 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