Uses of Class
org.apache.commons.jxpath.ri.compiler.NodeTest
-
Packages that use NodeTest Package Description org.apache.commons.jxpath.ri.axes Implementations of EvalContext used for different XPath axes (child::, parent:: etc).org.apache.commons.jxpath.ri.compiler XPath parse tree.org.apache.commons.jxpath.ri.model The "model" package defines APIs that are implemented for every object model to be supported by JXPath.org.apache.commons.jxpath.ri.model.beans Implementation of "model" APIs for JavaBeans, Dynamic Property Objects, collections and null.org.apache.commons.jxpath.ri.model.container Implementation of "model" APIs for Containers.org.apache.commons.jxpath.ri.model.dom Implementation of "model" APIs for W3C DOM.org.apache.commons.jxpath.ri.model.jdom Implementation of "model" APIs for JDOM (see jdom.org). -
-
Uses of NodeTest in org.apache.commons.jxpath.ri.axes
Fields in org.apache.commons.jxpath.ri.axes declared as NodeTest Modifier and Type Field Description private static NodeTestDescendantContext. ELEMENT_NODE_TESTprivate NodeTestAncestorContext. nodeTestprivate NodeTestAttributeContext. nodeTestprivate NodeTestChildContext. nodeTestprivate NodeTestDescendantContext. nodeTestprivate NodeTestNamespaceContext. nodeTestprivate NodeTestParentContext. nodeTestprivate NodeTestPrecedingOrFollowingContext. nodeTestprivate NodeTestSelfContext. nodeTestConstructors in org.apache.commons.jxpath.ri.axes with parameters of type NodeTest Constructor Description AncestorContext(EvalContext parentContext, boolean includeSelf, NodeTest nodeTest)Create a new AncestorContext.AttributeContext(EvalContext parentContext, NodeTest nodeTest)Create a new AttributeContext.ChildContext(EvalContext parentContext, NodeTest nodeTest, boolean startFromParentLocation, boolean reverse)Create a new ChildContext.DescendantContext(EvalContext parentContext, boolean includeSelf, NodeTest nodeTest)Create a new DescendantContext.NamespaceContext(EvalContext parentContext, NodeTest nodeTest)ParentContext(EvalContext parentContext, NodeTest nodeTest)Create a new ParentContext.PrecedingOrFollowingContext(EvalContext parentContext, NodeTest nodeTest, boolean reverse)Create a new PrecedingOrFollowingContext.SelfContext(EvalContext parentContext, NodeTest nodeTest)Create a new SelfContext. -
Uses of NodeTest in org.apache.commons.jxpath.ri.compiler
Subclasses of NodeTest in org.apache.commons.jxpath.ri.compiler Modifier and Type Class Description classNodeNameTestclassNodeTypeTestclassProcessingInstructionTestFields in org.apache.commons.jxpath.ri.compiler declared as NodeTest Modifier and Type Field Description private NodeTestStep. nodeTestMethods in org.apache.commons.jxpath.ri.compiler that return NodeTest Modifier and Type Method Description NodeTestStep. getNodeTest()Get the step test.Methods in org.apache.commons.jxpath.ri.compiler with parameters of type NodeTest Modifier and Type Method Description protected EvalContextPath. createContextForStep(EvalContext context, int axis, NodeTest nodeTest)Different axes are serviced by different contexts.Constructors in org.apache.commons.jxpath.ri.compiler with parameters of type NodeTest Constructor Description Step(int axis, NodeTest nodeTest, Expression[] predicates)Create a new Step. -
Uses of NodeTest in org.apache.commons.jxpath.ri.model
Methods in org.apache.commons.jxpath.ri.model with parameters of type NodeTest Modifier and Type Method Description NodeIteratorNodePointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)Returns a NodeIterator that iterates over all children or all children that match the given NodeTest, starting with the specified one.NodeIteratorVariablePointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)booleanNodePointer. testNode(NodeTest test)Checks if this Pointer matches the supplied NodeTest.booleanVariablePointer. testNode(NodeTest nodeTest) -
Uses of NodeTest in org.apache.commons.jxpath.ri.model.beans
Fields in org.apache.commons.jxpath.ri.model.beans declared as NodeTest Modifier and Type Field Description private NodeTestCollectionChildNodeIterator. testMethods in org.apache.commons.jxpath.ri.model.beans with parameters of type NodeTest Modifier and Type Method Description NodeIteratorCollectionPointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)NodeIteratorPropertyOwnerPointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)booleanCollectionPointer. testNode(NodeTest test)booleanLangAttributePointer. testNode(NodeTest test)Constructors in org.apache.commons.jxpath.ri.model.beans with parameters of type NodeTest Constructor Description CollectionChildNodeIterator(CollectionPointer pointer, NodeTest test, boolean reverse, NodePointer startWith)Create a new CollectionChildNodeIterator. -
Uses of NodeTest in org.apache.commons.jxpath.ri.model.container
Methods in org.apache.commons.jxpath.ri.model.container with parameters of type NodeTest Modifier and Type Method Description NodeIteratorContainerPointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)booleanContainerPointer. testNode(NodeTest nodeTest) -
Uses of NodeTest in org.apache.commons.jxpath.ri.model.dom
Fields in org.apache.commons.jxpath.ri.model.dom declared as NodeTest Modifier and Type Field Description private NodeTestDOMNodeIterator. nodeTestMethods in org.apache.commons.jxpath.ri.model.dom with parameters of type NodeTest Modifier and Type Method Description NodeIteratorDOMNodePointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)booleanDOMAttributePointer. testNode(NodeTest nodeTest)booleanDOMNodePointer. testNode(NodeTest test)static booleanDOMNodePointer. testNode(org.w3c.dom.Node node, NodeTest test)Test a Node.booleanNamespacePointer. testNode(NodeTest nodeTest)Constructors in org.apache.commons.jxpath.ri.model.dom with parameters of type NodeTest Constructor Description DOMNodeIterator(NodePointer parent, NodeTest nodeTest, boolean reverse, NodePointer startWith)Create a new DOMNodeIterator. -
Uses of NodeTest in org.apache.commons.jxpath.ri.model.jdom
Fields in org.apache.commons.jxpath.ri.model.jdom declared as NodeTest Modifier and Type Field Description private NodeTestJDOMNodeIterator. nodeTestMethods in org.apache.commons.jxpath.ri.model.jdom with parameters of type NodeTest Modifier and Type Method Description NodeIteratorJDOMNodePointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)booleanJDOMNodePointer. testNode(NodeTest test)static booleanJDOMNodePointer. testNode(NodePointer pointer, java.lang.Object node, NodeTest test)Execute test against node on behalf of pointer.Constructors in org.apache.commons.jxpath.ri.model.jdom with parameters of type NodeTest Constructor Description JDOMNodeIterator(NodePointer parent, NodeTest nodeTest, boolean reverse, NodePointer startWith)Create a new JDOMNodeIterator.
-