javax.datamining.rule
Class BooleanOperator
java.lang.Object
|
+--javax.datamining.Enum
|
+--javax.datamining.rule.BooleanOperator
- All Implemented Interfaces:
- java.lang.Comparable, java.io.Serializable
- public class BooleanOperator
- extends Enum
The enumeration BooleanOperator
represents the Boolean operators that may connect
two predicates.
- Author:
- JSR-73 Java Data Mining Expert Group
- See Also:
- Serialized Form
|
Method Summary |
static void |
addExtension(java.lang.String name)
Adds a vendor extension name to BooleanOperator. |
static BooleanOperator |
valueOf(java.lang.String name)
Returns an instance of BooleanOperator corresponding to the specified name. |
static BooleanOperator[] |
values()
Returns a list of all BooleanOperator enumerations defined. |
| Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
and
public static final BooleanOperator and
not
public static final BooleanOperator not
or
public static final BooleanOperator or
surrogate
public static final BooleanOperator surrogate
xor
public static final BooleanOperator xor
addExtension
public static void addExtension(java.lang.String name)
throws JDMException
- Adds a vendor extension
name to BooleanOperator.
- Parameters:
name - The name of the unique vendor extension
- Throws:
JDMException - When name is an invalid string or redundant to existing standard enums.
valueOf
public static BooleanOperator valueOf(java.lang.String name)
throws JDMException
- Returns an instance of
BooleanOperator corresponding to the specified name.
- Parameters:
name - The name of the enumeration value
- Returns:
BooleanOperator - The instance of the specified enumeration.
- Throws:
JDMException - When name is not valid.
values
public static BooleanOperator[] values()
- Returns a list of all
BooleanOperator enumerations defined.
- Returns:
BooleanOperator[]