public enum BenchmarkComparisonOperatorType extends Enum<BenchmarkComparisonOperatorType>
| Enum Constant and Description |
|---|
greater_or_equal |
greater_than |
less_or_equal |
less_than |
| Modifier and Type | Method and Description |
|---|---|
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–2019 ODPi. All rights reserved.