public enum BASELINE_METHOD extends Enum<BASELINE_METHOD>
| Modifier and Type | Method and Description |
|---|---|
static BASELINE_METHOD |
byName(String name) |
String |
getName() |
static BASELINE_METHOD |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BASELINE_METHOD[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BASELINE_METHOD MAX
public static final BASELINE_METHOD MIN
public static final BASELINE_METHOD MEAN
public static final BASELINE_METHOD NEUTRAL
public static final BASELINE_METHOD OTHER
public static BASELINE_METHOD[] values()
for (BASELINE_METHOD c : BASELINE_METHOD.values()) System.out.println(c);
public static BASELINE_METHOD 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 nullpublic static BASELINE_METHOD byName(String name)
public String getName()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.