Uses of Interface
org.jaxen.expr.Step
-
Packages that use Step Package Description org.jaxen.expr Interfaces and default implementations for XPath expression components.org.jaxen.pattern Defines XSLT Pattern objects. -
-
Uses of Step in org.jaxen.expr
Subinterfaces of Step in org.jaxen.expr Modifier and Type Interface Description interface
AllNodeStep
Represents the XPath node-testnode()
.interface
CommentNodeStep
Represents the XPath node-testcomment()
.interface
NameStep
Represents an XPath name test such aspara
orsvg:rect
.interface
ProcessingInstructionNodeStep
Represents the XPath node-testprocessing-instruction()
.interface
TextNodeStep
Represents the XPath node-testtext()
.Classes in org.jaxen.expr that implement Step Modifier and Type Class Description class
DefaultAllNodeStep
Deprecated.this class will become non-public in the future; use the interface insteadclass
DefaultCommentNodeStep
Deprecated.this class will become non-public in the future; use the interface insteadclass
DefaultNameStep
Deprecated.this class will become non-public in the future; use the interface insteadclass
DefaultProcessingInstructionNodeStep
Deprecated.this class will become non-public in the future; use the interface insteadclass
DefaultStep
Deprecated.this class will become non-public in the future; use the interface insteadclass
DefaultTextNodeStep
Deprecated.this class will become non-public in the future; use the interface insteadMethods in org.jaxen.expr that return Step Modifier and Type Method Description Step
DefaultXPathFactory. createAllNodeStep(int axis)
Step
XPathFactory. createAllNodeStep(int axis)
Create a step with a node() node-test.Step
DefaultXPathFactory. createCommentNodeStep(int axis)
Step
XPathFactory. createCommentNodeStep(int axis)
Create a step with acomment()
node-test.Step
DefaultXPathFactory. createNameStep(int axis, java.lang.String prefix, java.lang.String localName)
Step
XPathFactory. createNameStep(int axis, java.lang.String prefix, java.lang.String localName)
Create a step with a named node-test.Step
DefaultXPathFactory. createProcessingInstructionNodeStep(int axis, java.lang.String piName)
Step
XPathFactory. createProcessingInstructionNodeStep(int axis, java.lang.String name)
Create a step with aprocessing-instruction()
node-test.Step
DefaultXPathFactory. createTextNodeStep(int axis)
Step
XPathFactory. createTextNodeStep(int axis)
Create a step with atext()
node-test.Methods in org.jaxen.expr with parameters of type Step Modifier and Type Method Description void
LocationPath. addStep(Step step)
Add the next step to this location path. -
Uses of Step in org.jaxen.pattern
Methods in org.jaxen.pattern with parameters of type Step Modifier and Type Method Description protected static LocationPathPattern
PatternParser. convertStep(LocationPathPattern path, Step step)
protected static boolean
PatternParser. navigationStep(Step step)
-