public static enum DebugContext.TracingThreshold extends Enum<DebugContext.TracingThreshold>
Enum Constant and Description |
---|
SUMMARY
A less verbose tracing, an equivalent to
Level.FINER logging level. |
TRACE
A more verbose tracing, an equivalent to
Level.FINE logging level. |
Modifier and Type | Method and Description |
---|---|
static DebugContext.TracingThreshold |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DebugContext.TracingThreshold[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugContext.TracingThreshold SUMMARY
Level.FINER
logging level.public static final DebugContext.TracingThreshold TRACE
Level.FINE
logging level.
The default tracing threshold.public static DebugContext.TracingThreshold[] values()
for (DebugContext.TracingThreshold c : DebugContext.TracingThreshold.values()) System.out.println(c);
public static DebugContext.TracingThreshold 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-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.