javax.datamining.association
Class RuleComponentOption
java.lang.Object
|
+--javax.datamining.Enum
|
+--javax.datamining.association.RuleComponentOption
- All Implemented Interfaces:
- java.lang.Comparable, java.io.Serializable
- public class RuleComponentOption
- extends Enum
The enumeration RuleComponentOption
lists the components of the rule to be selected.
- 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 RuleComponentOption. |
static RuleComponentOption |
valueOf(java.lang.String name)
Returns an instance of RuleComponentOption corresponding to the specified name. |
static RuleComponentOption[] |
values()
Returns a list of all RuleComponentOption enumerations defined. |
| Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
antecedent
public static final RuleComponentOption antecedent
antecedentOrConsequent
public static final RuleComponentOption antecedentOrConsequent
consequent
public static final RuleComponentOption consequent
systemDefault
public static final RuleComponentOption systemDefault
addExtension
public static void addExtension(java.lang.String name)
throws JDMException
- Adds a vendor extension
name to RuleComponentOption.
- 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 RuleComponentOption valueOf(java.lang.String name)
throws JDMException
- Returns an instance of
RuleComponentOption corresponding to the specified name.
- Parameters:
name - The name of the enumeration value
- Returns:
RuleComponentOption - The instance of the specified enumeration.
- Throws:
JDMException - When name is not valid.
values
public static RuleComponentOption[] values()
- Returns a list of all
RuleComponentOption enumerations defined.
- Returns:
RuleComponentOption[]