
public static enum OTraverse.STRATEGY extends Enum<OTraverse.STRATEGY>
| Enum Constant and Description |
|---|
BREADTH_FIRST |
DEPTH_FIRST |
| Modifier and Type | Method and Description |
|---|---|
static OTraverse.STRATEGY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OTraverse.STRATEGY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OTraverse.STRATEGY DEPTH_FIRST
public static final OTraverse.STRATEGY BREADTH_FIRST
public static OTraverse.STRATEGY[] values()
for (OTraverse.STRATEGY c : OTraverse.STRATEGY.values()) System.out.println(c);
public static OTraverse.STRATEGY 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 nullCopyright © 2009–2025 OrientDB. All rights reserved.