public enum BenchmarkBaselineType extends Enum<BenchmarkBaselineType> implements IAEnum
| Enum Constant and Description |
|---|
DEGRADATION |
IMPROVEMENT |
SIMILARITY |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
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–2021 ODPi. All rights reserved.