public enum TraceLevel extends Enum<TraceLevel>
| Enum Constant and Description |
|---|
ALL
All available information, including per-entry information.
|
FAILURES
Only failed entries.
|
NONE
No details at all.
|
SUMMARY
Only an overall summary.
|
| Modifier and Type | Method and Description |
|---|---|
static TraceLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceLevel NONE
public static final TraceLevel FAILURES
public static final TraceLevel SUMMARY
public static final TraceLevel ALL
public static TraceLevel[] values()
for (TraceLevel c : TraceLevel.values()) System.out.println(c);
public static TraceLevel 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 © 2010–2018 The Apache Software Foundation. All rights reserved.