public static enum PerformanceRunner.ReportLevel extends Enum<PerformanceRunner.ReportLevel>
Enum Constant and Description |
---|
ClassLevel |
MethodLevel |
Modifier and Type | Method and Description |
---|---|
static PerformanceRunner.ReportLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PerformanceRunner.ReportLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerformanceRunner.ReportLevel ClassLevel
public static final PerformanceRunner.ReportLevel MethodLevel
public static PerformanceRunner.ReportLevel[] values()
for (PerformanceRunner.ReportLevel c : PerformanceRunner.ReportLevel.values()) System.out.println(c);
public static PerformanceRunner.ReportLevel 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 © 2007–2015 The Apache Software Foundation. All rights reserved.