|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XNodeSet | |
jd.xml.xpath.expr | Contains the base XPath expression classes. |
jd.xml.xpath.expr.function | Contains the XPath functions. |
jd.xml.xpath.expr.operator | Contains classes representing various XPath operators. |
jd.xml.xpath.expr.path | |
jd.xml.xpath.object | Contains classes for the XPath objects, i.e. |
jd.xml.xpath.tool | Contains utility classes to evaluate XPath expressions. |
jd.xml.xslt | Contains a XSLT Version 1.1 implementation. |
jd.xml.xslt.expr | Contains the XPath functions and expressions defined by XSLT. |
jd.xml.xslt.extension.exslt | Contains support for extensions defined by EXSLT . |
jd.xml.xslt.format | Contains helper classes for XSLT format and sort tasks. |
jd.xml.xslt.util | Contains XSLT related utility classes. |
Uses of XNodeSet in jd.xml.xpath.expr |
Methods in jd.xml.xpath.expr that return XNodeSet | |
XNodeSet |
ExpressionImpl.toNodeSet(XPathContext context,
int ordering)
Evaluate the Expression to a XObject and convert to a XNodeSet. |
XNodeSet |
Expression.toNodeSet(XPathContext context,
int ordering)
Evaluate the Expression to a XNodeSet. |
Uses of XNodeSet in jd.xml.xpath.expr.function |
Methods in jd.xml.xpath.expr.function that return XNodeSet | |
XNodeSet |
Id.toNodeSet(XPathContext context,
int nodeSetOrdering)
|
Uses of XNodeSet in jd.xml.xpath.expr.operator |
Methods in jd.xml.xpath.expr.operator that return XNodeSet | |
XNodeSet |
Union.toNodeSet(XPathContext context,
int nodeSetOrdering)
Evaluate the Expression. |
Uses of XNodeSet in jd.xml.xpath.expr.path |
Methods in jd.xml.xpath.expr.path that return XNodeSet | |
XNodeSet |
SimpleLocationStep.toNodeSet(XPathContext context,
int nodeSetOrdering)
Evaluate the LocationStep. |
XNodeSet |
PredicateExpression.toNodeSet(XPathContext context,
int nodeSetOrdering)
Evaluate the Expression. |
XNodeSet |
LocationStepChain.toNodeSet(XPathContext context,
int nodeSetOrdering)
Evaluate the LocationStep. |
XNodeSet |
FilteredLocationStep.toNodeSet(XPathContext context,
int nodeSetOrdering)
Evaluate the FilteredLocationStep. |
XNodeSet |
ComposedPath.toNodeSet(XPathContext context,
int nodeSetOrdering)
Evaluate the Expression. |
Uses of XNodeSet in jd.xml.xpath.object |
Subclasses of XNodeSet in jd.xml.xpath.object | |
(package private) class |
XConvertibleNodeSet
A XMutableNodeSet that can be converted to another XPath type and therefore stores only the first added node |
(package private) class |
XCountNodeSet
A XMutableNodeSet that does not store the added nodes but only updates the size information. |
class |
XEmptyNodeSet
An empty nodeset. |
class |
XListNodeSet
A MutableNodeSet that stores the added nodes in an array. |
class |
XMutableNodeSet
A NodeSet to which nodes can be added. |
class |
XSingleNodeSet
A XNodeSet which contains one or zero nodes. |
(package private) class |
XSumNodeSet
A NodeSet which collects only the sum of the number values of the added nodes but does not provide access to the nodes. |
Methods in jd.xml.xpath.object that return XNodeSet | |
XNodeSet |
XObject.toNodeSet()
Convert the XObject to a NodeSet. |
XNodeSet |
XNodeSet.toNodeSet()
Return this. |
Methods in jd.xml.xpath.object with parameters of type XNodeSet | |
void |
XSumNodeSet.addNodes(XNodeSet nodeSet)
|
boolean |
XNodeSet.compare(Equality equality,
XNodeSet set)
Return if this XObject equals the given nodeSet. |
boolean |
XNodeSet.compare(Relation relation,
XNodeSet set)
Compare this XObject to the number value according the given relation. |
void |
XMutableNodeSet.addNodes(XNodeSet nodeSet)
Add another nodeset to this nodeset. |
void |
XMutableNodeSet.merge(XNodeSet set1,
XNodeSet set2)
Merge two nodesets, which are already ordered in document order. |
protected void |
XMutableNodeSet.mergeSingleDoc(XNodeSet set1,
XNodeSet set2)
Merge two node-sets whose nodes all belong to the same document. |
protected void |
XMutableNodeSet.mergeMultiDoc(XNodeSet set1,
XNodeSet set2)
Merge two node-sets whose nodes belong to different documents. |
void |
XListNodeSet.addNodes(XNodeSet nodeSet)
|
void |
XCountNodeSet.addNodes(XNodeSet nodeSet)
|
void |
XConvertibleNodeSet.addNodes(XNodeSet nodeSet)
Add another nodeset to this nodeset. |
protected void |
XConvertibleNodeSet.mergeSingleDoc(XNodeSet set1,
XNodeSet set2)
Merge two node-sets whose nodes all belong to the same document. |
protected void |
XConvertibleNodeSet.mergeMultiDoc(XNodeSet set1,
XNodeSet set2)
Merge two node-sets whose nodes belong to different documents. |
Uses of XNodeSet in jd.xml.xpath.tool |
Methods in jd.xml.xpath.tool that return XNodeSet | |
XNodeSet |
XPath.toNodeSet()
Evaluate the expression to a node-set. |
Uses of XNodeSet in jd.xml.xslt |
Methods in jd.xml.xslt that return XNodeSet | |
XNodeSet |
XsltContext.getKeyNodes(String keyName,
String value)
Retrieve all nodes of a key with the specified value. |
Uses of XNodeSet in jd.xml.xslt.expr |
Subclasses of XNodeSet in jd.xml.xslt.expr | |
class |
XResultTreeFragment
A NodeSet constructed by the template of a variable binding element. |
class |
XTextContentFragment
A NodeSet constructed by the template of a variable binding element. |
Methods in jd.xml.xslt.expr that return XNodeSet | |
XNodeSet |
TextContentExpression.toNodeSet(XPathContext context,
int nodeSetOrdering)
|
XNodeSet |
KeyFunction.toNodeSet(XPathContext context,
int nodeSetOrdering)
Evalute the function. |
XNodeSet |
DocumentFunction.toNodeSet(XPathContext context,
int nodeSetOrdering)
Evaluate the function. |
XNodeSet |
Current.toNodeSet(XPathContext context,
int nodeSetOrdering)
Return a node-set with the current node. |
Uses of XNodeSet in jd.xml.xslt.extension.exslt |
Methods in jd.xml.xslt.extension.exslt that return XNodeSet | |
static XNodeSet |
ExsltUtil.getNodeSet(Vector nodes)
|
static XNodeSet |
CommonFunctions.nodeSet(XObject object)
Convert the value to a NodeSet. |
Uses of XNodeSet in jd.xml.xslt.format |
Methods in jd.xml.xslt.format that return XNodeSet | |
XNodeSet |
Sort.sort(XsltContext context,
XNodeSet nodeSet)
|
Methods in jd.xml.xslt.format with parameters of type XNodeSet | |
XNodeSet |
Sort.sort(XsltContext context,
XNodeSet nodeSet)
|
Uses of XNodeSet in jd.xml.xslt.util |
Methods in jd.xml.xslt.util that return XNodeSet | |
XNodeSet |
KeyMap.getNodeSet(String value)
|
Methods in jd.xml.xslt.util with parameters of type XNodeSet | |
void |
KeyMap.addNode(XPathNode node,
XNodeSet nodeSet)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |