Uses of Class
org.apache.xpath.XPathContext
| Package | Description |
|---|---|
| org.apache.xalan.extensions | |
| org.apache.xalan.serialize | |
| org.apache.xalan.templates |
Implements the
Templates interface,
and defines a set of classes that represent an XSLT stylesheet. |
| org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees.
|
| org.apache.xpath |
Implementation of XPath; for the most part, only classes meant for public use are
found at this root level of the XPath packages.
|
| org.apache.xpath.axes |
Implementation of XPath LocationPath support -- primary classes are
LocPathIterator and UnionPathIterator.
|
| org.apache.xpath.functions |
Implements XPath functions -- each function is derived from Function,
FunctionOneArg, Function2Args, etc, with number-of-arguments checking being
applied mainly at compile time -- this package only implements XPath functions,
XSLT functions are found in the "templates" package.
|
| org.apache.xpath.jaxp | |
| org.apache.xpath.objects |
Implementation of XPath polymorphic type objects -- this package will grow
as XPath objects are expanded to support XML Schema data types.
|
| org.apache.xpath.operations |
Support for XPath operations, such as +, -, string(), etc.
|
| org.apache.xpath.patterns |
Implementation of XPath nodeTest support, and XSLT pattern matching support.
|
-
Uses of XPathContext in org.apache.xalan.extensions
Methods in org.apache.xalan.extensions that return XPathContext Modifier and Type Method Description XPathContextExpressionContext. getXPathContext()Get the XPathContext that owns this ExpressionContext. -
Uses of XPathContext in org.apache.xalan.serialize
Methods in org.apache.xalan.serialize with parameters of type XPathContext Modifier and Type Method Description static voidSerializerUtils. outputResultTreeFragment(SerializationHandler handler, XObject obj, XPathContext support)Given a result tree fragment, walk the tree and output it to the SerializationHandler. -
Uses of XPathContext in org.apache.xalan.templates
Methods in org.apache.xalan.templates with parameters of type XPathContext Modifier and Type Method Description voidFuncDocument. error(XPathContext xctxt, String msg, Object[] args)Tell the user of an error, and probably throw an exception.StringAVT. evaluate(XPathContext xctxt, int context, PrefixResolver nsNode)Evaluate the AVT and return a String.abstract voidAVTPart. evaluate(XPathContext xctxt, FastStringBuffer buf, int context, PrefixResolver nsNode)Write the evaluated value into the given string buffer.voidAVTPartSimple. evaluate(XPathContext xctxt, FastStringBuffer buf, int context, PrefixResolver nsNode)Write the value into the buffer.voidAVTPartXPath. evaluate(XPathContext xctxt, FastStringBuffer buf, int context, PrefixResolver nsNode)Write the value into the buffer.XObjectFuncDocument. execute(XPathContext xctxt)Execute the function.XObjectFuncFormatNumb. execute(XPathContext xctxt)Execute the function.XObjectFuncKey. execute(XPathContext xctxt)Execute the function.XObjectXUnresolvedVariable. execute(XPathContext xctxt)For support of literal objects in xpaths.XObjectXUnresolvedVariableSimple. execute(XPathContext xctxt)For support of literal objects in xpaths.org.apache.xalan.templates.TemplateSubPatternAssociationTemplateList. getHead(XPathContext xctxt, int targetNode, DTM dtm)Get the head of the most likely list of associations to check, based on the name and type of the targetNode argument.intElemNumber. getPreviousNode(XPathContext xctxt, int pos)Get the previous node to be counted.intElemNumber. getTargetNode(XPathContext xctxt, int sourceNode)Get the target node that will be counted..ElemTemplateTemplateList. getTemplate(XPathContext xctxt, int targetNode, QName mode, boolean quietConflictWarnings, DTM dtm)Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft.ElemTemplateTemplateList. getTemplate(XPathContext xctxt, int targetNode, QName mode, int maxImportLevel, int endImportLevel, boolean quietConflictWarnings, DTM dtm)Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft.ElemTemplateStylesheetRoot. getTemplateComposed(XPathContext xctxt, int targetNode, QName mode, boolean quietConflictWarnings, DTM dtm)Get an "xsl:template" property by node match.ElemTemplateStylesheetRoot. getTemplateComposed(XPathContext xctxt, int targetNode, QName mode, int maxImportLevel, int endImportLevel, boolean quietConflictWarnings, DTM dtm)Get an "xsl:template" property by node match.ElemTemplateTemplateList. getTemplateFast(XPathContext xctxt, int targetNode, int expTypeID, QName mode, int maxImportLevel, boolean quietConflictWarnings, DTM dtm)Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft.WhiteSpaceInfoStylesheetRoot. getWhiteSpaceInfo(XPathContext support, int targetElement, DTM dtm)Get information about whether or not an element should strip whitespace.voidAVTPart. setXPathSupport(XPathContext support)Set the XPath support.booleanElemTemplateElement. shouldStripWhiteSpace(XPathContext support, Element targetElement)Get information about whether or not an element should strip whitespace.booleanStylesheetRoot. shouldStripWhiteSpace(XPathContext support, int targetElement)Get information about whether or not an element should strip whitespace.DTMIteratorElemForEach. sortNodes(XPathContext xctxt, Vector keys, DTMIterator sourceNodes)Sort given nodesvoidFuncDocument. warn(XPathContext xctxt, String msg, Object[] args)Warn the user of a problem.voidFuncFormatNumb. warn(XPathContext xctxt, String msg, Object[] args)Warn the user of a problem.Constructors in org.apache.xalan.templates with parameters of type XPathContext Constructor Description AVTPartXPath(String val, PrefixResolver nsNode, XPathParser xpathProcessor, XPathFactory factory, XPathContext liaison)Construct a simple AVT part. -
Uses of XPathContext in org.apache.xalan.transformer
Methods in org.apache.xalan.transformer that return XPathContext Modifier and Type Method Description XPathContextTransformerImpl. getXPathContext()Get the XPath context associated with this transformer.Methods in org.apache.xalan.transformer with parameters of type XPathContext Modifier and Type Method Description intCountersTable. countNode(XPathContext support, ElemNumber numberElem, int node)Count forward until the given node is found, or until we have looked to the given amount.XNodeSetKeyManager. getNodeSetDTMByKey(XPathContext xctxt, int doc, QName name, XMLString ref, PrefixResolver nscontext)Given a valid element key, return the corresponding node list.voidTransformerImpl. setXPathContext(XPathContext xcontext)Set the execution context for XPath.voidNodeSorter. sort(DTMIterator v, Vector keys, XPathContext support)Given a vector of nodes, sort each node according to the criteria in the keys.Constructors in org.apache.xalan.transformer with parameters of type XPathContext Constructor Description KeyTable(int doc, PrefixResolver nscontext, QName name, Vector keyDeclarations, XPathContext xctxt)Build a keys table.NodeSorter(XPathContext p)Construct a NodeSorter, passing in the XSL TransformerFactory so it can know how to get the node data according to the proper whitespace rules. -
Uses of XPathContext in org.apache.xpath
Fields in org.apache.xpath declared as XPathContext Modifier and Type Field Description protected XPathContextCachedXPathAPI. xpathSupportXPathContext, and thus the document model system (DTMs), persists through multiple calls to this object.Methods in org.apache.xpath that return XPathContext Modifier and Type Method Description XPathContextCachedXPathAPI. getXPathContext()Returns the XPathSupport object used in this CachedXPathAPI %REVIEW% I'm somewhat concerned about the loss of encapsulation this causes, but the xml-security folks say they need it.XPathContextXPathContext.XPathExpressionContext. getXPathContext()Return the XPathContext associated with this XPathExpressionContext.Methods in org.apache.xpath with parameters of type XPathContext Modifier and Type Method Description intNodeSet. addNodeInDocOrder(Node node, boolean test, XPathContext support)Add the node into a vector of nodes where it should occur in document order.intNodeSet. addNodeInDocOrder(Node node, XPathContext support)Add the node into a vector of nodes where it should occur in document order.intNodeSetDTM. addNodeInDocOrder(int node, boolean test, XPathContext support)Add the node into a vector of nodes where it should occur in document order.intNodeSetDTM. addNodeInDocOrder(int node, XPathContext support)Add the node into a vector of nodes where it should occur in document order.voidNodeSet. addNodesInDocOrder(NodeList nodelist, XPathContext support)Copy NodeList members into this nodelist, adding in document order.voidNodeSet. addNodesInDocOrder(NodeIterator iterator, XPathContext support)Copy NodeList members into this nodelist, adding in document order.voidNodeSetDTM. addNodesInDocOrder(DTMIterator iterator, XPathContext support)Copy NodeList members into this nodelist, adding in document order.DTMIteratorExpression. asIterator(XPathContext xctxt, int contextNode)Given an select expression and a context, evaluate the XPath and return the resulting iterator.DTMIteratorExpression. asIteratorRaw(XPathContext xctxt, int contextNode)Given an select expression and a context, evaluate the XPath and return the resulting iterator, but do not clone.intExpression. asNode(XPathContext xctxt)Return the first node out of the nodeset, if this expression is a nodeset expression.booleanExpression. bool(XPathContext xctxt)Evaluate expression to a boolean.booleanXPath. bool(XPathContext xctxt, int contextNode, PrefixResolver namespaceContext)Given an expression and a context, evaluate the XPath and return the result.voidExpression. error(XPathContext xctxt, String msg, Object[] args)Tell the user of an error, and probably throw an exception.voidXPath. error(XPathContext xctxt, int sourceNode, String msg, Object[] args)Tell the user of an error, and probably throw an exception.abstract XObjectExpression. execute(XPathContext xctxt)Execute an expression in the XPath runtime context, and return the result of the expression.XObjectExpression. execute(XPathContext xctxt, boolean destructiveOK)Execute an expression in the XPath runtime context, and return the result of the expression, but tell that a "safe" object doesn't have to be returned.XObjectExpression. execute(XPathContext xctxt, int currentNode)Execute an expression in the XPath runtime context, and return the result of the expression.XObjectExpression. execute(XPathContext xctxt, int currentNode, DTM dtm, int expType)Execute an expression in the XPath runtime context, and return the result of the expression.XObjectXPath. execute(XPathContext xctxt, int contextNode, PrefixResolver namespaceContext)Given an expression and a context, evaluate the XPath and return the result.XObjectXPath. execute(XPathContext xctxt, Node contextNode, PrefixResolver namespaceContext)Given an expression and a context, evaluate the XPath and return the result.voidExpression. executeCharsToContentHandler(XPathContext xctxt, ContentHandler handler)Execute an expression in the XPath runtime context, and return the result of the expression.XObjectVariableStack. getGlobalVariable(XPathContext xctxt, int index)Get a global variable or parameter from the global stack frame.XObjectVariableStack. getGlobalVariable(XPathContext xctxt, int index, boolean destructiveOK)Get a global variable or parameter from the global stack frame.XObjectVariableStack. getLocalVariable(XPathContext xctxt, int index)Get a local variable or parameter in the current stack frame.XObjectVariableStack. getLocalVariable(XPathContext xctxt, int index, boolean destructiveOK)Get a local variable or parameter in the current stack frame.doubleXPath. getMatchScore(XPathContext xctxt, int context)Get the match score of the given node.intSourceTreeManager. getSourceTree(String base, String urlString, SourceLocator locator, XPathContext xctxt)Get the source tree from the a base URL and a URL string.intSourceTreeManager. getSourceTree(Source source, SourceLocator locator, XPathContext xctxt)Get the source tree from the input source.XObjectVariableStack. getVariableOrParam(XPathContext xctxt, QName qname)Get a variable based on it's qualified name.doubleExpression. num(XPathContext xctxt)Evaluate expression to a number.intSourceTreeManager. parseToNode(Source source, SourceLocator locator, XPathContext xctxt)Try to create a DOM source tree from the input source.booleanWhitespaceStrippingElementMatcher. shouldStripWhiteSpace(XPathContext support, Element targetElement)Get information about whether or not an element should strip whitespace.voidExpression. warn(XPathContext xctxt, String msg, Object[] args)Warn the user of an problem.voidXPath. warn(XPathContext xctxt, int sourceNode, String msg, Object[] args)Warn the user of an problem.XMLStringExpression. xstr(XPathContext xctxt)Cast result object to a string.Constructors in org.apache.xpath with parameters of type XPathContext Constructor Description NodeSetDTM(NodeList nodeList, XPathContext xctxt)Create a NodeSetDTM, and copy the members of the given DTMIterator into it.NodeSetDTM(NodeIterator iterator, XPathContext xctxt)Create a NodeSetDTM, and copy the members of the given DTMIterator into it. -
Uses of XPathContext in org.apache.xpath.axes
Fields in org.apache.xpath.axes declared as XPathContext Modifier and Type Field Description protected XPathContextLocPathIterator. m_execContextThe XPathContext reference, needed for execution of many operations.Methods in org.apache.xpath.axes that return XPathContext Modifier and Type Method Description XPathContextLocPathIterator. getXPathContext()The XPath execution context we are operating on.Methods in org.apache.xpath.axes with parameters of type XPathContext Modifier and Type Method Description shortMatchPatternIterator. acceptNode(int n, XPathContext xctxt)Test whether a specified node is visible in the logical view of a TreeWalker or NodeIterator.DTMIteratorLocPathIterator. asIterator(XPathContext xctxt, int contextNode)Given an select expression and a context, evaluate the XPath and return the resulting iterator.intChildIterator. asNode(XPathContext xctxt)Return the first node out of the nodeset, if this expression is a nodeset expression.intDescendantIterator. asNode(XPathContext xctxt)Return the first node out of the nodeset, if this expression is a nodeset expression.intLocPathIterator. asNode(XPathContext xctxt)Return the first node out of the nodeset, if this expression is a nodeset expression.intSelfIteratorNoPredicate. asNode(XPathContext xctxt)Return the first node out of the nodeset, if this expression is a nodeset expression.booleanLocPathIterator. bool(XPathContext xctxt)Evaluate this operation directly to a boolean.XObjectLocPathIterator. execute(XPathContext xctxt)Execute this iterator, meaning create a clone that can store state, and initialize it for fast execution from the current runtime state.voidLocPathIterator. executeCharsToContentHandler(XPathContext xctxt, ContentHandler handler)Execute an expression in the XPath runtime context, and return the result of the expression.static XNodeSetFilterExprIteratorSimple. executeFilterExpr(int context, XPathContext xctxt, PrefixResolver prefixResolver, boolean isTopLevel, int stackFrame, Expression expr)Execute the expression.intAxesWalker. getLastPos(XPathContext xctxt)Get the index of the last node that can be itterated to.intFilterExprWalker. getLastPos(XPathContext xctxt)Get the index of the last node that can be itterated to.intLocPathIterator. getLastPos(XPathContext xctxt)abstract intPredicatedNodeTest. getLastPos(XPathContext xctxt)Get the index of the last node that can be itterated to.intReverseAxesWalker. getLastPos(XPathContext xctxt)Get the number of nodes in this node list.intSelfIteratorNoPredicate. getLastPos(XPathContext xctxt)Get the index of the last node that can be itterated to.intSubContextList. getLastPos(XPathContext xctxt)Get the number of nodes in the node list, which, in the XSLT 1 based counting system, is the last index position.intPredicatedNodeTest. getProximityPosition(XPathContext xctxt)Get the current sub-context position.intSubContextList. getProximityPosition(XPathContext xctxt)Get the current sub-context position. -
Uses of XPathContext in org.apache.xpath.functions
Methods in org.apache.xpath.functions with parameters of type XPathContext Modifier and Type Method Description XObjectFuncBoolean. execute(XPathContext xctxt)Execute the function.XObjectFuncCeiling. execute(XPathContext xctxt)Execute the function.XObjectFuncConcat. execute(XPathContext xctxt)Execute the function.XObjectFuncContains. execute(XPathContext xctxt)Execute the function.XObjectFuncCount. execute(XPathContext xctxt)Execute the function.XObjectFuncCurrent. execute(XPathContext xctxt)Execute the function.XObjectFuncDoclocation. execute(XPathContext xctxt)Execute the function.XObjectFuncExtElementAvailable. execute(XPathContext xctxt)Execute the function.XObjectFuncExtFunction. execute(XPathContext xctxt)Execute the function.XObjectFuncExtFunctionAvailable. execute(XPathContext xctxt)Execute the function.XObjectFuncFalse. execute(XPathContext xctxt)Execute the function.XObjectFuncFloor. execute(XPathContext xctxt)Execute the function.XObjectFuncGenerateId. execute(XPathContext xctxt)Execute the function.XObjectFuncId. execute(XPathContext xctxt)Execute the function.XObjectFuncLang. execute(XPathContext xctxt)Execute the function.XObjectFuncLast. execute(XPathContext xctxt)Execute the function.XObjectFuncLocalPart. execute(XPathContext xctxt)Execute the function.XObjectFuncNamespace. execute(XPathContext xctxt)Execute the function.XObjectFuncNormalizeSpace. execute(XPathContext xctxt)Execute the function.XObjectFuncNot. execute(XPathContext xctxt)Execute the function.XObjectFuncNumber. execute(XPathContext xctxt)Execute the function.XObjectFuncPosition. execute(XPathContext xctxt)Execute the function.XObjectFuncQname. execute(XPathContext xctxt)Execute the function.XObjectFuncRound. execute(XPathContext xctxt)Execute the function.XObjectFuncStartsWith. execute(XPathContext xctxt)Execute the function.XObjectFuncString. execute(XPathContext xctxt)Execute the function.XObjectFuncStringLength. execute(XPathContext xctxt)Execute the function.XObjectFuncSubstring. execute(XPathContext xctxt)Execute the function.XObjectFuncSubstringAfter. execute(XPathContext xctxt)Execute the function.XObjectFuncSubstringBefore. execute(XPathContext xctxt)Execute the function.XObjectFuncSum. execute(XPathContext xctxt)Execute the function.XObjectFuncSystemProperty. execute(XPathContext xctxt)Execute the function.XObjectFunction. execute(XPathContext xctxt)Execute an XPath function object.XObjectFuncTranslate. execute(XPathContext xctxt)Execute the function.XObjectFuncTrue. execute(XPathContext xctxt)Execute the function.XObjectFuncUnparsedEntityURI. execute(XPathContext xctxt)Execute the function.voidFuncNormalizeSpace. executeCharsToContentHandler(XPathContext xctxt, ContentHandler handler)Execute an expression in the XPath runtime context, and return the result of the expression.protected intFunctionDef1Arg. getArg0AsNode(XPathContext xctxt)Execute the first argument expression that is expected to return a nodeset.protected doubleFunctionDef1Arg. getArg0AsNumber(XPathContext xctxt)Execute the first argument expression that is expected to return a number.protected XMLStringFunctionDef1Arg. getArg0AsString(XPathContext xctxt)Execute the first argument expression that is expected to return a string.intFuncLast. getCountOfContextNodeList(XPathContext xctxt)Get the position in the current context node list.intFuncPosition. getPositionInContextNodeList(XPathContext xctxt)Get the position in the current context node list. -
Uses of XPathContext in org.apache.xpath.jaxp
Methods in org.apache.xpath.jaxp with parameters of type XPathContext Modifier and Type Method Description XObjectJAXPVariableStack. getVariableOrParam(XPathContext xctxt, QName qname) -
Uses of XPathContext in org.apache.xpath.objects
Methods in org.apache.xpath.objects with parameters of type XPathContext Modifier and Type Method Description ObjectXObject. castToType(int t, XPathContext support)Cast object to type t.static XObjectXObject. create(Object val, XPathContext xctxt)Create the right XObject based on the type of the object passed.static XObjectXObjectFactory. create(Object val, XPathContext xctxt)Create the right XObject based on the type of the object passed.XObjectXObject. execute(XPathContext xctxt)For support of literal objects in xpaths.XObjectXRTreeFragSelectWrapper. execute(XPathContext xctxt)For support of literal objects in xpaths.doubleXNumber. num(XPathContext xctxt)Evaluate expression to a number.intXNull. rtf(XPathContext support)Cast result object to a result tree fragment.intXObject. rtf(XPathContext support)Cast result object to a result tree fragment.intXString. rtf(XPathContext support)Cast result object to a result tree fragment.DocumentFragmentXObject. rtree(XPathContext support)Cast result object to a result tree fragment.Constructors in org.apache.xpath.objects with parameters of type XPathContext Constructor Description DTMXRTreeFrag(int dtmIdentity, XPathContext xctxt)XNodeSetForDOM(NodeList nodeList, XPathContext xctxt)XNodeSetForDOM(NodeIterator nodeIter, XPathContext xctxt)XRTreeFrag(int root, XPathContext xctxt)Create an XRTreeFrag Object.XRTreeFrag(int root, XPathContext xctxt, ExpressionNode parent)Create an XRTreeFrag Object. -
Uses of XPathContext in org.apache.xpath.operations
Methods in org.apache.xpath.operations with parameters of type XPathContext Modifier and Type Method Description booleanAnd. bool(XPathContext xctxt)Evaluate this operation directly to a boolean.booleanBool. bool(XPathContext xctxt)Evaluate this operation directly to a boolean.booleanEquals. bool(XPathContext xctxt)Execute a binary operation by calling execute on each of the operands, and then calling the operate method on the derived class.booleanOr. bool(XPathContext xctxt)Evaluate this operation directly to a boolean.XObjectAnd. execute(XPathContext xctxt)AND two expressions and return the boolean result.XObjectOperation. execute(XPathContext xctxt)Execute a binary operation by calling execute on each of the operands, and then calling the operate method on the derived class.XObjectOr. execute(XPathContext xctxt)OR two expressions and return the boolean result.XObjectUnaryOperation. execute(XPathContext xctxt)Execute the operand and apply the unary operation to the result.XObjectVariable. execute(XPathContext xctxt)Execute an expression in the XPath runtime context, and return the result of the expression.XObjectVariable. execute(XPathContext xctxt, boolean destructiveOK)Dereference the variable, and return the reference value.XObjectVariableSafeAbsRef. execute(XPathContext xctxt, boolean destructiveOK)Dereference the variable, and return the reference value.doubleDiv. num(XPathContext xctxt)Evaluate this operation directly to a double.doubleMinus. num(XPathContext xctxt)Evaluate this operation directly to a double.doubleMod. num(XPathContext xctxt)Evaluate this operation directly to a double.doubleMult. num(XPathContext xctxt)Evaluate this operation directly to a double.doubleNeg. num(XPathContext xctxt)Evaluate this operation directly to a double.doubleNumber. num(XPathContext xctxt)Evaluate this operation directly to a double.doublePlus. num(XPathContext xctxt)Evaluate this operation directly to a double. -
Uses of XPathContext in org.apache.xpath.patterns
Methods in org.apache.xpath.patterns with parameters of type XPathContext Modifier and Type Method Description XObjectContextMatchStepPattern. execute(XPathContext xctxt)Execute this pattern step, including predicates.XObjectFunctionPattern. execute(XPathContext xctxt)Test a node to see if it matches the given node test.XObjectFunctionPattern. execute(XPathContext xctxt, int context)Test a node to see if it matches the given node test.XObjectFunctionPattern. execute(XPathContext xctxt, int context, DTM dtm, int expType)Test a node to see if it matches the given node test.XObjectNodeTest. execute(XPathContext xctxt)Test the current node to see if it matches the given node test.XObjectNodeTest. execute(XPathContext xctxt, int context)Tell what the test score is for the given node.XObjectNodeTest. execute(XPathContext xctxt, int context, DTM dtm, int expType)Tell what the test score is for the given node.XObjectStepPattern. execute(XPathContext xctxt)Execute this pattern step, including predicates.XObjectStepPattern. execute(XPathContext xctxt, int currentNode)Execute this pattern step, including predicates.XObjectStepPattern. execute(XPathContext xctxt, int currentNode, DTM dtm, int expType)Execute an expression in the XPath runtime context, and return the result of the expression.XObjectUnionPattern. execute(XPathContext xctxt)Test a node to see if it matches any of the patterns in the union.protected booleanStepPattern. executePredicates(XPathContext xctxt, DTM dtm, int currentNode)Execute the predicates on this step to determine if the current node should be filtered or accepted.XObjectContextMatchStepPattern. executeRelativePathPattern(XPathContext xctxt, StepPattern prevStep)Execute the match pattern step relative to another step.protected XObjectStepPattern. executeRelativePathPattern(XPathContext xctxt, DTM dtm, int currentNode)Execute the match pattern step relative to another step.intStepPattern. getLastPos(XPathContext xctxt)Get the count of the nodes that match the test, which is the proximity position of the last node that can pass this test in the sub context selection.doubleStepPattern. getMatchScore(XPathContext xctxt, int context)Get the match score of the given node.intStepPattern. getProximityPosition(XPathContext xctxt)Get the proximity position index of the current node based on this node test.