Package org.kie.pmml.api.enums
Enum BOOLEAN_OPERATOR
- java.lang.Object
-
- java.lang.Enum<BOOLEAN_OPERATOR>
-
- org.kie.pmml.api.enums.BOOLEAN_OPERATOR
-
- All Implemented Interfaces:
Serializable,Comparable<BOOLEAN_OPERATOR>
public enum BOOLEAN_OPERATOR extends Enum<BOOLEAN_OPERATOR>
- See Also:
- CompoundPredicate
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BOOLEAN_OPERATORbyName(String name)StringgetCustomOperator()StringgetName()static BOOLEAN_OPERATORvalueOf(String name)Returns the enum constant of this type with the specified name.static BOOLEAN_OPERATOR[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OR
public static final BOOLEAN_OPERATOR OR
-
AND
public static final BOOLEAN_OPERATOR AND
-
XOR
public static final BOOLEAN_OPERATOR XOR
-
SURROGATE
public static final BOOLEAN_OPERATOR SURROGATE
-
-
Method Detail
-
values
public static BOOLEAN_OPERATOR[] 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 (BOOLEAN_OPERATOR c : BOOLEAN_OPERATOR.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BOOLEAN_OPERATOR 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 BOOLEAN_OPERATOR byName(String name)
-
getName
public String getName()
-
getCustomOperator
public String getCustomOperator()
-
-