public static enum DebugContext.TracingThreshold extends java.lang.Enum<DebugContext.TracingThreshold>
| Enum Constant and Description | 
|---|
| SUMMARYA less verbose tracing, an equivalent to  Level.FINERlogging level. | 
| TRACEA more verbose tracing, an equivalent to  Level.FINElogging level. | 
| Modifier and Type | Method and Description | 
|---|---|
| static DebugContext.TracingThreshold | valueOf(java.lang.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(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 nullCopyright © 2012–2020 Oracle Corporation. All rights reserved.