Class NodeSetValue
java.lang.Object
com.icl.saxon.expr.Expression
com.icl.saxon.expr.Value
com.icl.saxon.expr.NodeSetValue
- Direct Known Subclasses:
EmptyNodeSet, NodeSetExtent, NodeSetIntent, SingletonNodeSet
A node-set value. We use this both for node-sets and node-lists. The node set will only
be sorted into document order when requested (using sort() or evaluate()). This is an abstract
class with a number of concrete implementations including NodeSetExtent (for extensional node-sets)
and NodeSetIntent (for intensional node-sets).
-
Field Summary
Fields inherited from class Expression
staticContext -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract booleanEvaluate as a boolean.doubleasNumber()Evaluate as a number.abstract StringasString()Convert to string valuebooleanTest how a nodeset compares to another Value under a relational comparisonintconversionPreference(Class required) Get conversion preference for this value to a Java class.convertToJava(Class target) Convert to Java object (for passing to external functions)voiddisplay(int level) Diagnostic print of expression structureabstract NodeEnumerationReturn an enumeration of this nodeset value.Return an enumeration of this nodeset value.booleanTest whether a nodeset "equals" another ValueEvaluate the Node Set.evaluateAsNodeSet(Context context) Evaluate an expression as a NodeSet.abstract intgetCount()Count the nodes in the node-set.intDetermine the data type of the expressionabstract NodeInfogetFirst()Get the first node in the nodeset (in document order)abstract booleanisSorted()Test whether the value is known to be sortedbooleanTest whether a nodeset "not-equals" another Valueabstract voidsetSorted(boolean isSorted) Set a flag to indicate whether the nodes are sorted.abstract NodeSetValuesort()Sort the nodes into document order.Methods inherited from class Value
getDependencies, inverse, numericCompare, reduce, simplify, stringToNumberMethods inherited from class Expression
containsReferences, evaluateAsBoolean, evaluateAsNumber, evaluateAsString, getStaticContext, indent, isContextDocumentNodeSet, make, outputStringValue, setStaticContext, usesCurrent
-
Constructor Details
-
NodeSetValue
public NodeSetValue()
-
-
Method Details
-
getDataType
public int getDataType()Determine the data type of the expression- Specified by:
getDataTypein classExpression- Returns:
- Value.NODESET
-
evaluate
Evaluate the Node Set. This guarantees to return the result in sorted order.- Overrides:
evaluatein classValue- Parameters:
context- The context for evaluation (not used)- Returns:
- the value, unchanged
- Throws:
XPathException
-
evaluateAsNodeSet
Evaluate an expression as a NodeSet.- Overrides:
evaluateAsNodeSetin classExpression- Parameters:
context- The context in which the expression is to be evaluated- Returns:
- the value of the expression, evaluated in the current context
- Throws:
XPathException- when the expression does not return a nodeset.
-
enumerate
Return an enumeration of this nodeset value. Unless sort() has been called the nodes can be in any order.- Throws:
XPathException
-
enumerate
Return an enumeration of this nodeset value. This is to satisfy the interface for Expression.- Overrides:
enumeratein classExpression- Parameters:
c- The context in which the expression is to be evaluatedsorted- Indicates that the result must be in document ordercontext- The context is ignored.- Throws:
XPathException- when the expression does not return a nodeset.
-
setSorted
public abstract 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.- 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
Test whether the value is known to be sorted- Returns:
- true if the value is known to be sorted in document order, false if it is not known whether it is sorted.
- Throws:
XPathException
-
asString
Convert to string value- Specified by:
asStringin classValue- Returns:
- the value of the first node in the node-set if there is one, otherwise an empty string
- Throws:
XPathException
-
asNumber
Evaluate as a number.- Specified by:
asNumberin classValue- Returns:
- the number obtained by evaluating as a String and converting the string to a number
- Throws:
XPathException
-
asBoolean
Evaluate as a boolean.- Specified by:
asBooleanin classValue- Returns:
- true if the node set is not empty
- Throws:
XPathException
-
getCount
Count the nodes in the node-set. Note this will sort the node set if necessary, to make sure there are no duplicates.- Throws:
XPathException
-
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)- Parameters:
controller- The controller used to sort nodes into document order- Returns:
- the same NodeSetValue, after sorting. (The reason for returning this is that it makes life easier for the XSL compiler).
- Throws:
XPathException
-
getFirst
Get the first node in the nodeset (in document order)- Returns:
- the first node
- Throws:
XPathException
-
equals
Test whether a nodeset "equals" another Value- Overrides:
equalsin classValue- Returns:
- a boolean giving the value of the expression, evaluated in the current context
- Throws:
XPathException
-
notEquals
Test whether a nodeset "not-equals" another Value- Overrides:
notEqualsin classValue- Returns:
- a boolean giving the value of the expression, evaluated in the current context
- Throws:
XPathException
-
compare
Test how a nodeset compares to another Value under a relational comparison- Overrides:
comparein classValue- Parameters:
operator- The comparison operator, one of Tokenizer.LE, Tokenizer.LT, Tokenizer.GE, Tokenizer.GT,- Throws:
XPathException
-
display
public void display(int level) Diagnostic print of expression structure- Specified by:
displayin classExpression
-
conversionPreference
Get conversion preference for this value to a Java class. A low result indicates higher preference.- Specified by:
conversionPreferencein classValue
-
convertToJava
Convert to Java object (for passing to external functions)- Specified by:
convertToJavain classValue- Parameters:
target- The class required by the external function- Returns:
- an object of the target class
- Throws:
XPathException
-