public enum Verbosity extends Enum<Verbosity>
Enum Constant and Description |
---|
All
All the other information plus all debug properties of the node.
|
Debugger
For use by a custom formatting facility in an IDE.
|
Id
Only the id of the node.
|
Long
Defaults to
Short and may be enhanced by subclasses. |
Name
Only the name of the node, which may contain some more information for certain node types
(constants, ...).
|
Short
|
Modifier and Type | Method and Description |
---|---|
static Verbosity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Verbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Verbosity Name
public static Verbosity[] values()
for (Verbosity c : Verbosity.values()) System.out.println(c);
public static Verbosity 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