public enum BenchmarkBaselineType extends Enum<BenchmarkBaselineType>
| Enum Constant and Description |
|---|
degradation |
improvement |
similarity |
| Modifier and Type | Method and Description |
|---|---|
static BenchmarkBaselineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BenchmarkBaselineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BenchmarkBaselineType similarity
public static final BenchmarkBaselineType degradation
public static final BenchmarkBaselineType improvement
public static BenchmarkBaselineType[] values()
for (BenchmarkBaselineType c : BenchmarkBaselineType.values()) System.out.println(c);
public static BenchmarkBaselineType 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 © 2018–2019 ODPi. All rights reserved.