public static enum Constants.CheckRoutingCycleType extends Enum<Constants.CheckRoutingCycleType>
Enum Constant and Description |
---|
NO_CHECK
Routing cycles are not checked.
|
NO_REPEAT_LINK
No link is traversed more than once.
|
NO_REPEAT_NODE
No node is traversed more than once.
|
Modifier and Type | Method and Description |
---|---|
static Constants.CheckRoutingCycleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.CheckRoutingCycleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.CheckRoutingCycleType NO_CHECK
public static final Constants.CheckRoutingCycleType NO_REPEAT_LINK
public static final Constants.CheckRoutingCycleType NO_REPEAT_NODE
public static Constants.CheckRoutingCycleType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Constants.CheckRoutingCycleType[] values()
for (Constants.CheckRoutingCycleType c : Constants.CheckRoutingCycleType.values()) System.out.println(c);
Copyright © 2018. All rights reserved.