edu.udo.cs.yale.example
Interface Condition

All Known Implementing Classes:
AcceptAllCondition, AttributeValueFilter, BayBoostStream.BatchFilterCondition, CorrectPredictionCondition, MissingAttributesCondition, MissingLabelsCondition, NoMissingAttributesCondition, NoMissingLabelsCondition, WrongPredictionCondition

public interface Condition

Objects implementing this interface are used by ConditionExampleReaders, a special sub class of ExampleReader that skips all examples that do not fulfill this condition. In order for the ConditionExampleReader.createCondition(String, ExampleSet, String) factory method to be able to create instances of an implementation of Condition, it must implement a two argument constructor taking an ExampleSet and a parameter String. The meaning of the parameter string is dependent on the implementation and may even be ignored, although it would be nice to print a warning.

Version:
$Id: Condition.java,v 2.13 2006/08/03 14:39:28 ingomierswa Exp $
Author:
Ingo Mierswa, Simon Fischer

Method Summary
 boolean conditionOk(Example example)
          Should return true if the given example does fulfill this condition.
 Condition duplicate()
          Returns a duplicate of this condition.
 

Method Detail

conditionOk

boolean conditionOk(Example example)
Should return true if the given example does fulfill this condition.


duplicate

Condition duplicate()
Returns a duplicate of this condition. Subclasses which cannot dynamically changed can also return the same object.



Copyright © 2001-2006