Package org.kie.pmml.api.enums
Enum MISSING_VALUE_TREATMENT_METHOD
- java.lang.Object
-
- java.lang.Enum<MISSING_VALUE_TREATMENT_METHOD>
-
- org.kie.pmml.api.enums.MISSING_VALUE_TREATMENT_METHOD
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MISSING_VALUE_TREATMENT_METHOD>,Named
public enum MISSING_VALUE_TREATMENT_METHOD extends java.lang.Enum<MISSING_VALUE_TREATMENT_METHOD> implements Named
- See Also:
- MISSING-VALUE_TREATMENT-METHOD
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MISSING_VALUE_TREATMENT_METHODbyName(java.lang.String name)java.lang.StringgetName()static MISSING_VALUE_TREATMENT_METHODvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MISSING_VALUE_TREATMENT_METHOD[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AS_IS
public static final MISSING_VALUE_TREATMENT_METHOD AS_IS
-
AS_MEAN
public static final MISSING_VALUE_TREATMENT_METHOD AS_MEAN
-
AS_MODE
public static final MISSING_VALUE_TREATMENT_METHOD AS_MODE
-
AS_MEDIAN
public static final MISSING_VALUE_TREATMENT_METHOD AS_MEDIAN
-
AS_VALUE
public static final MISSING_VALUE_TREATMENT_METHOD AS_VALUE
-
RETURN_INVALID
public static final MISSING_VALUE_TREATMENT_METHOD RETURN_INVALID
-
-
Method Detail
-
values
public static MISSING_VALUE_TREATMENT_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 (MISSING_VALUE_TREATMENT_METHOD c : MISSING_VALUE_TREATMENT_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 MISSING_VALUE_TREATMENT_METHOD valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
byName
public static MISSING_VALUE_TREATMENT_METHOD byName(java.lang.String name)
-
-