public static enum RunAnalyzer.Type extends Enum<RunAnalyzer.Type>
Enum Constant and Description |
---|
AVERAGE
Averaging.
|
COMPARE
Comparison.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Returns the string representation of the analysis type.
|
static RunAnalyzer.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunAnalyzer.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunAnalyzer.Type COMPARE
public static final RunAnalyzer.Type AVERAGE
public static RunAnalyzer.Type[] values()
for (RunAnalyzer.Type c : RunAnalyzer.Type.values()) System.out.println(c);
public static RunAnalyzer.Type 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 nullpublic String toString()
toString
in class Enum<RunAnalyzer.Type>