public abstract class Sets
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static SequenceIterator |
difference(SequenceIterator p1,
SequenceIterator p2)
Return the difference of two node-sets (interpreted as sequences of nodes that must be supplied
in document order)
|
static boolean |
hasSameNode(SequenceIterator p1,
SequenceIterator p2)
Determine whether two node-sets (interpreted as sequences of nodes that must be supplied
in document order) contain at least one node in common
|
static SequenceIterator |
intersection(SequenceIterator p1,
SequenceIterator p2)
Return the intersection of two node-sets (interpreted as sequences of nodes that must be supplied
in document order)
|
static SequenceIterator |
leading(XPathContext context,
SequenceIterator ns1,
SequenceIterator ns2)
Find all the nodes in ns1 that are before the first node in ns2.
|
static SequenceIterator |
trailing(XPathContext context,
SequenceIterator ns1,
SequenceIterator ns2)
Find all the nodes in ns1 that are after the first node in ns2.
|
public static SequenceIterator intersection(SequenceIterator p1, SequenceIterator p2) throws XPathException
p1
- The first node-setp2
- The second node-setXPathException
public static SequenceIterator difference(SequenceIterator p1, SequenceIterator p2) throws XPathException
p1
- The first node-setp2
- The second node-setXPathException
public static boolean hasSameNode(SequenceIterator p1, SequenceIterator p2) throws XPathException
p1
- The first node-setp2
- The second node-setXPathException
public static SequenceIterator leading(XPathContext context, SequenceIterator ns1, SequenceIterator ns2) throws XPathException
ns1
- The first node-setns2
- The second node-setXPathException
public static SequenceIterator trailing(XPathContext context, SequenceIterator ns1, SequenceIterator ns2) throws XPathException
ns1
- The first node-setns2
- The second node-setXPathException
Copyright (c) 2004-2018 Saxonica Limited. All rights reserved.