Class DefaultStep
java.lang.Object
org.jaxen.expr.DefaultStep
- All Implemented Interfaces:
Serializable, Predicated, Step
- Direct Known Subclasses:
DefaultAllNodeStep, DefaultCommentNodeStep, DefaultNameStep, DefaultProcessingInstructionNodeStep, DefaultTextNodeStep
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddPredicate(Predicate predicate) Add an additional predicate to this object.axisIterator(Object contextNode, ContextSupport support) Get an Iterator for the current axis starting in the given contextNode.For each node in the given context calls matches() for every node on the axis, then filters the result by each of the predicates.intgetAxis()Get an identifier for the current axis.Returns a possibly empty list of predicates.Returns a possibly empty set of predicates.getText()Returns aStringcontaining the XPath expression.voidsimplify()Simplifies the XPath step.toString()
-
Method Details
-
addPredicate
Description copied from interface:PredicatedAdd an additional predicate to this object.- Specified by:
addPredicatein interfacePredicated- Parameters:
predicate- the predicate to add
-
getPredicates
Description copied from interface:PredicatedReturns a possibly empty list of predicates.- Specified by:
getPredicatesin interfacePredicated- Returns:
- the list of predicates
-
getPredicateSet
Description copied from interface:PredicatedReturns a possibly empty set of predicates.- Specified by:
getPredicateSetin interfacePredicated- Returns:
- the set of predicates
-
getAxis
-
getIterableAxis
-
getAxisName
-
getText
-
toString
-
simplify
-
axisIterator
public Iterator axisIterator(Object contextNode, ContextSupport support) throws UnsupportedAxisException Description copied from interface:StepGet an Iterator for the current axis starting in the given contextNode.- Specified by:
axisIteratorin interfaceStep- Parameters:
contextNode- the node from which to follow this stepsupport- the remaining context for the traversal- Returns:
- an iterator over the nodes along the axis
- Throws:
UnsupportedAxisException- if the navigator does not support this step's axis
-
evaluate
Description copied from interface:StepFor each node in the given context calls matches() for every node on the axis, then filters the result by each of the predicates.- Specified by:
evaluatein interfaceStep- Parameters:
context- the node in context of its position in the document- Returns:
- a list of matching nodes
- Throws:
JaxenException
-