Package org.kie.pmml.api.enums
Enum INVALID_VALUE_TREATMENT_METHOD
- java.lang.Object
-
- java.lang.Enum<INVALID_VALUE_TREATMENT_METHOD>
-
- org.kie.pmml.api.enums.INVALID_VALUE_TREATMENT_METHOD
-
- All Implemented Interfaces:
Serializable,Comparable<INVALID_VALUE_TREATMENT_METHOD>,Named
public enum INVALID_VALUE_TREATMENT_METHOD extends Enum<INVALID_VALUE_TREATMENT_METHOD> implements Named
- See Also:
- INVALID-VALUE-TREATMENT-METHOD
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AS_ISAS_MISSINGAS_VALUERETURN_INVALID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static INVALID_VALUE_TREATMENT_METHODbyName(String name)StringgetName()static INVALID_VALUE_TREATMENT_METHODvalueOf(String name)Returns the enum constant of this type with the specified name.static INVALID_VALUE_TREATMENT_METHOD[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RETURN_INVALID
public static final INVALID_VALUE_TREATMENT_METHOD RETURN_INVALID
-
AS_IS
public static final INVALID_VALUE_TREATMENT_METHOD AS_IS
-
AS_MISSING
public static final INVALID_VALUE_TREATMENT_METHOD AS_MISSING
-
AS_VALUE
public static final INVALID_VALUE_TREATMENT_METHOD AS_VALUE
-
-
Method Detail
-
values
public static INVALID_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 (INVALID_VALUE_TREATMENT_METHOD c : INVALID_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 INVALID_VALUE_TREATMENT_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 INVALID_VALUE_TREATMENT_METHOD byName(String name)
-
-