Package org.geotools.filter.function
Class FilterFunction_vertices
- Object
-
- ExpressionAbstract
-
- DefaultExpression
-
- FunctionExpressionImpl
-
- FilterFunction_vertices
-
- All Implemented Interfaces:
Expression
,Function
,FunctionExpression
,Factory
public class FilterFunction_vertices extends FunctionExpressionImpl
-
-
Field Summary
Fields Modifier and Type Field Description static FunctionName
NAME
-
Fields inherited from class FunctionExpressionImpl
fallback, functionName, name, params
-
Fields inherited from interface Expression
NIL
-
-
Constructor Summary
Constructors Constructor Description FilterFunction_vertices()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
evaluate(Object feature, Class<T> context)
Default implementation delegates handling of context conversion to Converters utility class.-
Methods inherited from class FunctionExpressionImpl
accept, equals, evaluate, functionName, getExpression, getFallbackValue, getFunctionName, getImplementationHints, getName, getParameters, hashCode, setFallbackValue, setParameters, toString
-
Methods inherited from class DefaultExpression
isAttributeExpression, isExpression, isFunctionExpression, isGeometryExpression, isLiteralExpression, isMathExpression
-
-
-
-
Field Detail
-
NAME
public static FunctionName NAME
-
-
Method Detail
-
evaluate
public <T> T evaluate(Object feature, Class<T> context)
Description copied from class:ExpressionAbstract
Default implementation delegates handling of context conversion to Converters utility class.Subclasses are expected to make use of the Converters utility class (as the easiest way to provide value morphing in conformance with the Filter specification).
- Specified by:
evaluate
in interfaceExpression
- Overrides:
evaluate
in classExpressionAbstract
- Type Parameters:
T
- The type of the returned object.- Parameters:
feature
- The object to evaluate the expression against.context
- The type of the resulting value of the expression.- Returns:
- Evaluates the given expression based on the content of the given object an an
instance of
context
.
-
-