Package com.luciad.ogc.filter.evaluator
Interface ILcdEvaluator
Deprecated.
Produces the result of a generic expression as if an Object was entered in the expression.
An
ILcdEvaluator is typically created for an expression to be evaluated by an
ILcdEvaluatorFactory.-
Method Summary
-
Method Details
-
getValue
Deprecated.Returns the value of the expression for the given Object.- Parameters:
aObject- the object to evaluate in the expression this evaluator was built for. Typically this is a domain object, or the result of the evaluation of a previous expression.- Returns:
- the value of the expression for the given Object.
-
Evaluating a filter is done by creating a
TLcdOGCFilterEvaluatorinstance. The class javadoc ofTLcdOGCFilterEvaluatorcontains an example of this.Adding support for the evaluation of custom functions is achieved by implementing the
ILcdEvaluatorFunctioninterface. The javadoc of that interface illustrates this with an example.