Uses of Interface
org.apache.commons.jxpath.ExpressionContext
-
Packages that use ExpressionContext Package Description org.apache.commons.jxpath Public, abstract part of JXPath: interfaces and configuration.org.apache.commons.jxpath.functions Implementations of Java class-based extension functions.org.apache.commons.jxpath.ri Reference implementation of JXPath.org.apache.commons.jxpath.ri.axes 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 ExpressionContext Modifier and Type Method Description java.lang.ObjectFunction. invoke(ExpressionContext context, java.lang.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 ExpressionContext Modifier and Type Method Description java.lang.ObjectConstructorFunction. invoke(ExpressionContext context, java.lang.Object[] parameters)Converts parameters to suitable types and invokes the constructor.java.lang.ObjectMethodFunction. invoke(ExpressionContext context, java.lang.Object[] parameters) -
Uses of ExpressionContext in org.apache.commons.jxpath.ri
Classes in org.apache.commons.jxpath.ri that implement ExpressionContext Modifier and Type Class Description classEvalContextAn XPath evaluation context. -
Uses of ExpressionContext in org.apache.commons.jxpath.ri.axes
Classes in org.apache.commons.jxpath.ri.axes that implement ExpressionContext Modifier and Type Class Description classAncestorContextEvalContext that walks the "ancestor::" and "ancestor-or-self::" axes.classAttributeContextEvalContext that walks the "attribute::" axis.classChildContextEvalContext that can walk the "child::", "following-sibling::" and "preceding-sibling::" axes.classDescendantContextAn EvalContext that walks the "descendant::" and "descendant-or-self::" axes.classInitialContextA single-set EvalContext that provides access to the current node of the parent context and nothing else.classNamespaceContextEvalContext that walks the "namespace::" axis.classNodeSetContextA simple context that is based on aNodeSet.classParentContextEvalContext that walks the "parent::" axis.classPrecedingOrFollowingContextEvalContext that walks the "preceding::" and "following::" axes.classPredicateContextEvalContext that checks predicates.classRootContextEvalContext that is used to hold the root node for the path traversal.classSelfContextEvalContext that returns the current node from the parent context if the test succeeds.classUnionContextEvalContext that represents a union between other contexts - result of a union operation like (a | b)
-