|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.example.AbstractExampleReader
edu.udo.cs.yale.example.ConditionExampleReader
public class ConditionExampleReader
This ExampleReader skips all examples that do not fulfil a specified
Condition
.
Field Summary | |
---|---|
private Condition |
condition
The used condition. |
private Example |
currentExample
The example that will be returned by the next invocation of next(). |
static java.lang.String[] |
KNOWN_CONDITION_IMPLEMENTATIONS
Array of fully qualified classnames of implementations of Condition that are useful independently of special applications. |
static java.lang.String[] |
KNOWN_CONDITION_NAMES
Array of short names for the known conditions. |
private java.util.Iterator<Example> |
parent
The example reader that provides a complete example set. |
Constructor Summary | |
---|---|
ConditionExampleReader(java.util.Iterator<Example> parent,
Condition condition)
Constructs a new ConditionExampleReader the next() method of which returns only examples that fulfil a specified condition. |
Method Summary | |
---|---|
static Condition |
createCondition(java.lang.String name,
ExampleSet exampleSet,
java.lang.String parameterString)
Checks if the given name is the short name of a known condition and creates it. |
boolean |
hasNext()
|
Example |
next()
|
Methods inherited from class edu.udo.cs.yale.example.AbstractExampleReader |
---|
remove |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String[] KNOWN_CONDITION_NAMES
public static final java.lang.String[] KNOWN_CONDITION_IMPLEMENTATIONS
Condition
that are useful independently of special applications.
All conditions given here must provide a construtor with arguments
(ExampleSet data, String parameters).
private java.util.Iterator<Example> parent
private Condition condition
private Example currentExample
Constructor Detail |
---|
public ConditionExampleReader(java.util.Iterator<Example> parent, Condition condition)
Method Detail |
---|
public boolean hasNext()
public Example next()
public static Condition createCondition(java.lang.String name, ExampleSet exampleSet, java.lang.String parameterString) throws ConditionCreationException
Condition
by
calling its two argument constructor passing it the example set and the
parameter string
ConditionCreationException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |