com.dooapp.gaedo.finders.collections.Evaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gaedo-collections Show documentation
Show all versions of gaedo-collections Show documentation
Contains the collections implementation, and only depend upon gaedo-definition
package com.dooapp.gaedo.finders.collections;
/**
* Evaluator is counterpart for evaluating expressions.
* @author ndx
*
*/
public interface Evaluator {
/**
* Main method used to check if input object matches this evaluator
* @param element
* @return
*/
public boolean matches(DataType element);
/**
* Adds a subevaluator to this evaluator. May fire an {@link UnsupportedOperationException}
* @param subEvaluator
*/
public void add(Evaluator subEvaluator);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy