Package org.kie.pmml.api.enums
Enum BASELINE_METHOD
- java.lang.Object
-
- java.lang.Enum<BASELINE_METHOD>
-
- org.kie.pmml.api.enums.BASELINE_METHOD
-
- All Implemented Interfaces:
Serializable,Comparable<BASELINE_METHOD>,Named
public enum BASELINE_METHOD extends Enum<BASELINE_METHOD> implements Named
- See Also:
- baselinemethod
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BASELINE_METHODbyName(String name)StringgetName()static BASELINE_METHODvalueOf(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.
-
-
-
Enum Constant Detail
-
MAX
public static final BASELINE_METHOD MAX
-
MIN
public static final BASELINE_METHOD MIN
-
MEAN
public static final BASELINE_METHOD MEAN
-
NEUTRAL
public static final BASELINE_METHOD NEUTRAL
-
OTHER
public static final BASELINE_METHOD OTHER
-
-
Method Detail
-
values
public static BASELINE_METHOD[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BASELINE_METHOD c : BASELINE_METHOD.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BASELINE_METHOD valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
byName
public static BASELINE_METHOD byName(String name)
-
-