public enum FractionalMetrics extends Enum<FractionalMetrics>
| Enum Constant and Description |
|---|
DEFAULT
No change to fractional metrics setting.
|
OFF
Fractional metrics is disabled.
|
ON
Fractional metrics is enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static FractionalMetrics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FractionalMetrics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FractionalMetrics DEFAULT
public static final FractionalMetrics ON
public static final FractionalMetrics OFF
public static FractionalMetrics[] values()
for (FractionalMetrics c : FractionalMetrics.values()) System.out.println(c);
public static FractionalMetrics 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 null