|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use NodeSet | |
org.apache.xalan.lib | Extension elements and functions shipped with Xalan-Java, including EXSLT functions. |
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. |
Uses of NodeSet in org.apache.xalan.lib |
Methods in org.apache.xalan.lib that return NodeSet | |
static NodeSet |
Extensions.nodeset(ExpressionContext myProcessor,
java.lang.Object rtf)
This method is an extension that implements as a Xalan extension the node-set function also found in xt and saxon. |
static NodeSet |
Extensions.intersection(NodeIterator ni1,
NodeIterator ni2)
Returns the intersection of two node-sets. |
static NodeSet |
Extensions.difference(NodeIterator ni1,
NodeIterator ni2)
Returns the difference between two node-sets. |
static NodeSet |
Extensions.distinct(ExpressionContext myContext,
NodeIterator ni)
Returns node-set containing distinct string values. |
static NodeSet |
Extensions.tokenize(ExpressionContext myContext,
java.lang.String toTokenize,
java.lang.String delims)
Returns a NodeSet containing one text node for each token in the first argument. |
static NodeSet |
Extensions.tokenize(ExpressionContext myContext,
java.lang.String toTokenize)
Returns a NodeSet containing one text node for each token in the first argument. |
static NodeSet |
ExsltCommon.nodeSet(ExpressionContext myProcessor,
java.lang.Object rtf)
The exsl:node-set function converts a result tree fragment (which is what you get when you use the content of xsl:variable rather than its select attribute to give a variable value) into a node set. |
static NodeSet |
ExsltCommon.intersection(NodeIterator ni1,
NodeIterator ni2)
|
static NodeSet |
ExsltCommon.difference(NodeIterator ni1,
NodeIterator ni2)
|
static NodeSet |
ExsltCommon.distinct(ExpressionContext myContext,
NodeIterator ni)
|
static NodeSet |
ExsltMath.highest(ExpressionContext expCon,
NodeIterator ni)
The math:highest function returns the nodes in the node set whose value is the maximum value for the node set. |
static NodeSet |
ExsltMath.lowest(ExpressionContext expCon,
NodeIterator ni)
The math:lowest function returns the nodes in the node set whose value is the minimum value for the node set. |
static NodeSet |
ExsltSets.leading(NodeIterator ni1,
NodeIterator ni2)
The set:leading function returns the nodes in the node set passed as the first argument that precede, in document order, the first node in the node set passed as the second argument. |
static NodeSet |
ExsltSets.trailing(NodeIterator ni1,
NodeIterator ni2)
The set:trailing function returns the nodes in the node set passed as the first argument that follow, in document order, the first node in the node set passed as the second argument. |
static NodeSet |
ExsltSets.intersection(NodeIterator ni1,
NodeIterator ni2)
The set:intersection function returns a node set comprising the nodes that are within both the node sets passed as arguments to it. |
static NodeSet |
ExsltSets.difference(NodeIterator ni1,
NodeIterator ni2)
The set:difference function returns the difference between two node sets - those nodes that are in the node set passed as the first argument that are not in the node set passed as the second argument. |
static NodeSet |
ExsltSets.distinct(ExpressionContext myContext,
NodeIterator ni)
The set:distinct function returns a subset of the nodes contained in the node-set NS passed as the first argument. |
Uses of NodeSet in org.apache.xpath |
Methods in org.apache.xpath with parameters of type NodeSet | |
void |
NodeSet.addNodes(NodeSet ns)
Copy NodeList members into this nodelist, adding in document order. |
void |
NodeSet.appendNodes(NodeSet nodes)
Append the nodes to the list. |
Constructors in org.apache.xpath with parameters of type NodeSet | |
NodeSet.NodeSet(NodeSet nodelist)
Create a NodeSet, and copy the members of the given NodeSet into it. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |