Package org.kie.pmml.api.enums
Enum OUTLIER_TREATMENT_METHOD
- java.lang.Object
-
- java.lang.Enum<OUTLIER_TREATMENT_METHOD>
-
- org.kie.pmml.api.enums.OUTLIER_TREATMENT_METHOD
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OUTLIER_TREATMENT_METHOD>,Named
public enum OUTLIER_TREATMENT_METHOD extends java.lang.Enum<OUTLIER_TREATMENT_METHOD> implements Named
- See Also:
- OUTLIER-TREATMENT-METHOD
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AS_EXTREME_VALUESAS_ISAS_MISSING_VALUES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OUTLIER_TREATMENT_METHODbyName(java.lang.String name)java.lang.StringgetName()static OUTLIER_TREATMENT_METHODvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OUTLIER_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 OUTLIER_TREATMENT_METHOD AS_IS
-
AS_MISSING_VALUES
public static final OUTLIER_TREATMENT_METHOD AS_MISSING_VALUES
-
AS_EXTREME_VALUES
public static final OUTLIER_TREATMENT_METHOD AS_EXTREME_VALUES
-
-
Method Detail
-
values
public static OUTLIER_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 (OUTLIER_TREATMENT_METHOD c : OUTLIER_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 OUTLIER_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 OUTLIER_TREATMENT_METHOD byName(java.lang.String name)
-
-