public enum Traces extends Enum<Traces>
Trace implementations.| Enum Constant and Description |
|---|
BREADTH
Utility for running a
breadth first trace. |
DEPTH
Utility for running a
depth first trace. |
RANDOM
Utility for running a
random access trace. |
| Modifier and Type | Method and Description |
|---|---|
static Traces |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Traces[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Traces DEPTH
depth first trace.public static final Traces BREADTH
breadth first trace.public static final Traces RANDOM
random access trace.public static Traces[] values()
for (Traces c : Traces.values()) System.out.println(c);
public static Traces 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 © 2012–2020 The Apache Software Foundation. All rights reserved.