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