javax.datamining.association
Interface RulesFilterFactory

All Superinterfaces:
Factory

public interface RulesFilterFactory
extends Factory

A factory class that creates instances of RulesFilter.

Author:
JSR-73 Java Data Mining Expert Group
See Also:
Factory

Method Summary
 RulesFilter create()
          Createns an empty instance of RulesFilter.
 boolean supportsCapability(RuleProperty property)
          Returns true if the specified rule property is supported in the JDM implementation.
 boolean supportsCapability(RuleProperty property, ComparisonOperator compOp)
          Returns true if the specified rule property can be combined with the specified operator for threshold value setting.
 

Method Detail

create

public RulesFilter create()
                   throws JDMException
Createns an empty instance of RulesFilter.

Returns:
RulesFilter
Throws:
JDMException

supportsCapability

public boolean supportsCapability(RuleProperty property)
                           throws JDMException
Returns true if the specified rule property is supported in the JDM implementation. Retruns false otherwise.

Parameters:
property -
Returns:
boolean
Throws:
JDMException

supportsCapability

public boolean supportsCapability(RuleProperty property,
                                  ComparisonOperator compOp)
                           throws JDMException
Returns true if the specified rule property can be combined with the specified operator for threshold value setting. Retruns false otherwise.

Parameters:
property -
compOp -
Returns:
boolean
Throws:
JDMException