public static enum StatsReporter.WindowType extends Enum<StatsReporter.WindowType>
Enum Constant and Description |
---|
ITERATION
A window of the number of latest iterations.
|
TIME
A window of a given time period.
|
Modifier and Type | Method and Description |
---|---|
static StatsReporter.WindowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatsReporter.WindowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatsReporter.WindowType ITERATION
public static final StatsReporter.WindowType TIME
public static StatsReporter.WindowType[] values()
for (StatsReporter.WindowType c : StatsReporter.WindowType.values()) System.out.println(c);
public static StatsReporter.WindowType 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–2017 PerfCake Community. All rights reserved.