public static enum QBF.Traverse extends Enum<QBF.Traverse>
Modifier and Type | Method and Description |
---|---|
static QBF.Traverse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QBF.Traverse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QBF.Traverse PreOrder
public static final QBF.Traverse PostOrder
public static QBF.Traverse[] values()
for (QBF.Traverse c : QBF.Traverse.values()) System.out.println(c);
public static QBF.Traverse 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 null