|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PMMLBooleanOperator>
org.knime.base.node.mine.decisiontree2.PMMLBooleanOperator
public enum PMMLBooleanOperator
Contains the boolean operators that are specified in PMML for CompoundPrediates and SimpleSetPredicates.
Enum Constant Summary | |
---|---|
AND
and operator. |
|
OR
or operator. |
|
SURROGATE
Surrogate operator. |
|
XOR
xor operator. |
Method Summary | |
---|---|
static PMMLBooleanOperator |
get(String represent)
Returns the corresponding operator for the passed representation. |
String |
toString()
|
static PMMLBooleanOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PMMLBooleanOperator[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PMMLBooleanOperator OR
public static final PMMLBooleanOperator AND
public static final PMMLBooleanOperator XOR
public static final PMMLBooleanOperator SURROGATE
surrogate(a,b)
is equivalent to
if not unknown(a) then a else b
.
Method Detail |
---|
public static PMMLBooleanOperator[] values()
for (PMMLBooleanOperator c : PMMLBooleanOperator.values()) System.out.println(c);
public static PMMLBooleanOperator valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<PMMLBooleanOperator>
public static PMMLBooleanOperator get(String represent) throws InstantiationException
represent
- the representation to find the operator for
InstantiationException
- - if no such PMML operator exists
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |