public enum BenchmarkComparisonOperatorType extends Enum<BenchmarkComparisonOperatorType> implements IAEnum
| Enum Constant and Description |
|---|
GREATER_OR_EQUAL |
GREATER_THAN |
LESS_OR_EQUAL |
LESS_THAN |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static BenchmarkComparisonOperatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BenchmarkComparisonOperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BenchmarkComparisonOperatorType GREATER_THAN
public static final BenchmarkComparisonOperatorType GREATER_OR_EQUAL
public static final BenchmarkComparisonOperatorType LESS_THAN
public static final BenchmarkComparisonOperatorType LESS_OR_EQUAL
public static BenchmarkComparisonOperatorType[] values()
for (BenchmarkComparisonOperatorType c : BenchmarkComparisonOperatorType.values()) System.out.println(c);
public static BenchmarkComparisonOperatorType 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.