Uses of Class
net.sf.jdmf.data.output.Rule

Packages that use Rule
net.sf.jdmf.algorithms.classification.util   
net.sf.jdmf.data.output   
 

Uses of Rule in net.sf.jdmf.algorithms.classification.util
 

Methods in net.sf.jdmf.algorithms.classification.util that return types with arguments of type Rule
 java.util.List<Rule> AttributeValuePartitioner.partitionValues(java.lang.String firstAttributeName, java.lang.String secondAttributeName, java.util.List<AttributeValuePair> valuePairs, int minimumMajorityClassExamples)
          Partitions attribute value pairs using the algorithm described above.
 

Uses of Rule in net.sf.jdmf.data.output
 

Methods in net.sf.jdmf.data.output that return Rule
 Rule RuleInfo.getRule()
           
 

Methods in net.sf.jdmf.data.output that return types with arguments of type Rule
 java.util.List<Rule> DataMiningModel.getRules()
           
 

Methods in net.sf.jdmf.data.output with parameters of type Rule
 void DataMiningModel.addRule(Rule rule)
           
 RuleElement RuleElement.and(Rule parentRule)
          Appends a new rule element using the AND operator.
 void Rule.merge(Rule rule)
          Merges the given rule into this rule (appends the conditions and consequences of the given rule to this rule's conditions and consequences).
 RuleElement RuleElement.or(Rule parentRule)
          Appends a new rule element using the OR operator.
 RuleElement RuleElement.xor(Rule parentRule)
          Appends a new rule element using the XOR operator.
 

Method parameters in net.sf.jdmf.data.output with type arguments of type Rule
 void DataMiningModel.setRules(java.util.List<Rule> rules)
           
 

Constructors in net.sf.jdmf.data.output with parameters of type Rule
RuleInfo(Rule rule, java.lang.Integer coverage, java.lang.Double accuracy)