Class NodeSetExtent
java.lang.Object
com.icl.saxon.expr.Expression
com.icl.saxon.expr.Value
com.icl.saxon.expr.NodeSetValue
com.icl.saxon.expr.NodeSetExtent
A node-set value implemented extensionally. This class also implements the
DOM NodeList interface - though this will only work if the nodes themselves
implement the DOM Node interface (which is true of the two Saxon tree models,
but not necessarily of all possible implementations).
-
Field Summary
Fields inherited from class Expression
staticContext -
Constructor Summary
ConstructorsConstructorDescriptionNodeSetExtent(NodeEnumeration enm, NodeOrderComparer comparer) Construct a node-set containing all the nodes in a NodeEnumeration.NodeSetExtent(NodeInfo[] nodes, NodeOrderComparer comparer) Construct a node-set given the set of nodes as an arrayNodeSetExtent(NodeOrderComparer comparer) Construct an empty node setNodeSetExtent(Vector nodes, NodeOrderComparer comparer) Construct a node-set given the set of nodes as a Vector -
Method Summary
Modifier and TypeMethodDescriptionvoidAppend a node to the node-set.booleanEvaluate as a boolean.asString()Convert to string valueintcompare(int a, int b) Compare two nodes in document sequence (needed to implement the Sortable interface)Return an enumeration of this nodeset value.intgetCount()Count the nodes in the node-set.getFirst()Get the first node in the nodeset (in document order)intreturn the number of nodes in the list (DOM method)booleanisSorted()Test whether the value is known to be sorteditem(int index) Return the n'th item in the list (DOM method)selectFirst(Context context) Return the first node in the nodeset (in document order)voidsetSorted(boolean isSorted) Set a flag to indicate whether the nodes are sorted.simplify()Simplify the expressionsort()Sort the nodes into document order.voidswap(int a, int b) Swap two nodes (needed to implement the Sortable interface)Methods inherited from class NodeSetValue
asNumber, compare, conversionPreference, convertToJava, display, enumerate, equals, evaluate, evaluateAsNodeSet, getDataType, notEqualsMethods inherited from class Value
getDependencies, inverse, numericCompare, reduce, stringToNumberMethods inherited from class Expression
containsReferences, evaluateAsBoolean, evaluateAsNumber, evaluateAsString, getStaticContext, indent, isContextDocumentNodeSet, make, outputStringValue, setStaticContext, usesCurrent
-
Constructor Details
-
NodeSetExtent
Construct an empty node set -
NodeSetExtent
Construct a node-set given the set of nodes as an array- Parameters:
nodes- An array whose elements must be NodeInfo objectscomparer- Comparer used for sorting into document order
-
NodeSetExtent
Construct a node-set given the set of nodes as a Vector- Parameters:
nodes- a Vector whose elements must be NodeInfo objectscomparer- Comparer used for sorting into document order
-
NodeSetExtent
Construct a node-set containing all the nodes in a NodeEnumeration.- Parameters:
enm- The supplied node enumeration. This must be positioned at the start, so that hasMoreElements() returns true if there are any nodes in the node-set, and nextElement() returns the first node.comparer- Comparer used for sorting into document order- Throws:
XPathException
-
-
Method Details
-
append
Append a node to the node-set. This is used only when building indexes. The node-set must be sorted; the new node must follow the others in document order. The new node is not added if it is the same as the last node currently in the node-set. -
simplify
Simplify the expression -
setSorted
public void setSorted(boolean isSorted) Set a flag to indicate whether the nodes are sorted. Used when the creator of the node-set knows that they are already in document order.- Specified by:
setSortedin classNodeSetValue- Parameters:
isSorted- true if the caller wishes to assert that the nodes are in document order and do not need to be further sorted
-
isSorted
public boolean isSorted()Test whether the value is known to be sorted- Specified by:
isSortedin classNodeSetValue- Returns:
- true if the value is known to be sorted in document order, false if it is not known whether it is sorted.
-
asString
Convert to string value- Specified by:
asStringin classNodeSetValue- Returns:
- the value of the first node in the node-set if there is one, otherwise an empty string
-
asBoolean
Evaluate as a boolean.- Specified by:
asBooleanin classNodeSetValue- Returns:
- true if the node set is not empty
- Throws:
XPathException
-
getCount
public int getCount()Count the nodes in the node-set. Note this will sort the node set if necessary, to make sure there are no duplicates.- Specified by:
getCountin classNodeSetValue
-
sort
Sort the nodes into document order. This does nothing if the nodes are already known to be sorted; to force a sort, call setSorted(false)- Specified by:
sortin classNodeSetValue- Returns:
- the same NodeSetValue, after sorting. (The reason for returning this is that it makes life easier for the XSL compiler).
-
getFirst
Get the first node in the nodeset (in document order)- Specified by:
getFirstin classNodeSetValue- Returns:
- the first node, or null if the nodeset is empty
-
selectFirst
-
enumerate
Return an enumeration of this nodeset value.- Specified by:
enumeratein classNodeSetValue
-
getLength
-
item
-
compare
-
swap
-