javax.xml.xpath
Interface XPathFunction
XPathFunction provides access to XPath functions.
Functions are identified by QName and arity in XPath.
evaluate
public Object evaluate(List<E> args)
throws XPathFunctionException Evaluate the function with the specified arguments.
To the greatest extent possible, side-effects should be avoided in the
definition of extension functions. The implementation evaluating an
XPath expression is under no obligation to call extension functions in
any particular order or any particular number of times.
args - The arguments, null is a valid value.
- The result of evaluating the
XPath function as an Object.
View More Examples of evaluate(List args)
1: import ;
2: import ;
3: import ;
4: ...
5: int arity = args.size();
6: XPathFunction function = resolver.resolveFunction(qname, arity);
7: if (function != null)
8: ...
9: {
10: return function.evaluate(values);
11: }
View Full Code Here