Uses of Interface
org.apache.commons.jxpath.ExpressionContext
Packages that use ExpressionContext
Package
Description
Public, abstract part of JXPath: interfaces and configuration.
Implementations of Java class-based extension functions.
Reference implementation of JXPath.
Implementations of EvalContext used for different XPath axes (child::, parent:: etc).
-
Uses of ExpressionContext in org.apache.commons.jxpath
Methods in org.apache.commons.jxpath with parameters of type ExpressionContextModifier and TypeMethodDescriptionFunction.invoke
(ExpressionContext context, Object[] parameters) Computes the value of the function. -
Uses of ExpressionContext in org.apache.commons.jxpath.functions
Methods in org.apache.commons.jxpath.functions with parameters of type ExpressionContextModifier and TypeMethodDescriptionConstructorFunction.invoke
(ExpressionContext context, Object[] parameters) Converts parameters to suitable types and invokes the constructor.MethodFunction.invoke
(ExpressionContext context, Object[] parameters) -
Uses of ExpressionContext in org.apache.commons.jxpath.ri
Classes in org.apache.commons.jxpath.ri that implement ExpressionContext -
Uses of ExpressionContext in org.apache.commons.jxpath.ri.axes
Classes in org.apache.commons.jxpath.ri.axes that implement ExpressionContextModifier and TypeClassDescriptionclass
EvalContext that walks the "ancestor::" and "ancestor-or-self::" axes.class
EvalContext that walks the "attribute::" axis.class
EvalContext that can walk the "child::", "following-sibling::" and "preceding-sibling::" axes.class
An EvalContext that walks the "descendant::" and "descendant-or-self::" axes.class
A single-set EvalContext that provides access to the current node of the parent context and nothing else.class
EvalContext that walks the "namespace::" axis.class
A simple context that is based on aNodeSet
.class
EvalContext that walks the "parent::" axis.class
EvalContext that walks the "preceding::" and "following::" axes.class
EvalContext that checks predicates.class
EvalContext that is used to hold the root node for the path traversal.class
EvalContext that returns the current node from the parent context if the test succeeds.class
EvalContext that represents a union between other contexts - result of a union operation like (a | b)