public enum TracingLevel extends java.lang.Enum<TracingLevel>
Enum Constant and Description |
---|
DEBUG
Adds tracing messages describing certain phases in
the processing of the vAPI call.
|
INFO
Adds tracing tags only.
|
TRACE
In addition to the tracing messages, errors are
logged more verbosely.
|
Modifier and Type | Method and Description |
---|---|
static TracingLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TracingLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TracingLevel INFO
public static final TracingLevel DEBUG
public static final TracingLevel TRACE
public static TracingLevel[] values()
for (TracingLevel c : TracingLevel.values()) System.out.println(c);
public static TracingLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null