public enum Callout extends Enum<Callout>
| Enum Constant and Description |
|---|
Cycle
a cycle was detected, i.e.
|
MaxDepth
the maximum configured tree depth was exceeded
|
None
no callout is displayed
|
RepeatingNode
a subtree that was already printed before was pruned this time
|
| Modifier and Type | Method and Description |
|---|---|
String |
getText()
Get the text of the callout.
|
static Callout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Callout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Callout Cycle
public static final Callout MaxDepth
public static final Callout None
public static final Callout RepeatingNode
public static Callout 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 Callout[] values()
for (Callout c : Callout.values()) System.out.println(c);