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