Enum BooleanFunctions
- java.lang.Object
-
- java.lang.Enum<BooleanFunctions>
-
- org.kie.pmml.api.enums.builtinfunctions.BooleanFunctions
-
- All Implemented Interfaces:
Serializable,Comparable<BooleanFunctions>
public enum BooleanFunctions extends Enum<BooleanFunctions>
- See Also:
- Built-in functions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANDEQUALGREATER_OR_EQUALGREATER_THANIFIS_INIS_MISSINGIS_NOT_INIS_NOT_MISSINGIS_NOT_VALIDIS_VALIDLESS_OR_EQUALLESS_THANNOTNOT_EQUALOR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BooleanFunctionsbyName(String name)StringgetName()ObjectgetValue(Object[] inputData, MiningField referredByFieldRef)static booleanisBooleanFunctions(String name)static booleanisBooleanFunctionsValidation(String name)booleanisValidation()static BooleanFunctionsvalueOf(String name)Returns the enum constant of this type with the specified name.static BooleanFunctions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IS_MISSING
public static final BooleanFunctions IS_MISSING
-
IS_NOT_MISSING
public static final BooleanFunctions IS_NOT_MISSING
-
IS_VALID
public static final BooleanFunctions IS_VALID
-
IS_NOT_VALID
public static final BooleanFunctions IS_NOT_VALID
-
EQUAL
public static final BooleanFunctions EQUAL
-
NOT_EQUAL
public static final BooleanFunctions NOT_EQUAL
-
LESS_THAN
public static final BooleanFunctions LESS_THAN
-
LESS_OR_EQUAL
public static final BooleanFunctions LESS_OR_EQUAL
-
GREATER_THAN
public static final BooleanFunctions GREATER_THAN
-
GREATER_OR_EQUAL
public static final BooleanFunctions GREATER_OR_EQUAL
-
AND
public static final BooleanFunctions AND
-
OR
public static final BooleanFunctions OR
-
NOT
public static final BooleanFunctions NOT
-
IS_IN
public static final BooleanFunctions IS_IN
-
IS_NOT_IN
public static final BooleanFunctions IS_NOT_IN
-
IF
public static final BooleanFunctions IF
-
-
Method Detail
-
values
public static BooleanFunctions[] 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 (BooleanFunctions c : BooleanFunctions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BooleanFunctions 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
-
isBooleanFunctions
public static boolean isBooleanFunctions(String name)
-
isBooleanFunctionsValidation
public static boolean isBooleanFunctionsValidation(String name)
-
byName
public static BooleanFunctions byName(String name)
-
getName
public String getName()
-
getValue
public Object getValue(Object[] inputData, MiningField referredByFieldRef)
-
isValidation
public boolean isValidation()
-
-