Package net.sf.saxon.functions
Class SuperId
java.lang.Object
net.sf.saxon.functions.AbstractFunction
net.sf.saxon.functions.SystemFunction
net.sf.saxon.functions.SuperId
- All Implemented Interfaces:
Callable,IContextAccessorFunction,IFunctionWithRetainedParameterNames,FunctionItem,GroundedValue,Item,Sequence
- Direct Known Subclasses:
SuperId.ElementWithId,SuperId.Id
The XPath id() or element-with-id() function
XPath 2.0 version: accepts any sequence as the first parameter; each item in the sequence
is taken as an IDREFS value, that is, a space-separated list of ID values.
Also accepts an optional second argument to identify the target document, this
defaults to the context node.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbindContext(XPathContext context) Bind context information to appear as part of the function's closure.call(XPathContext context, Sequence[] arguments) Evaluate the expressionbooleanAsk whether this function is actually dependent on the dynamic contextstatic SequenceIteratorgetIdMultiple(TreeInfo doc, SequenceIterator idrefs, int operation) Get an iterator over the nodes that have an id equal to one of the values is a set of whitespace separated stringsstatic SequenceIteratorgetIdSingle(TreeInfo doc, UnicodeString idrefs, int operation) Get an iterator over the nodes that have an id equal to one of the values is a whitespace separated stringabstract intgetOp()intgetSpecialProperties(Expression[] arguments) Get the static properties of this expression (other than its type).Methods inherited from class net.sf.saxon.functions.SystemFunction
dependsOnContextItem, dynamicCall, equals, export, exportAdditionalArguments, exportAttributes, fixArguments, getArity, getCardinality, getContextNode, getDescription, getDetails, getElaborator, getErrorCodeForTypeErrors, getFunctionItemType, getFunctionName, getNetCost, getOperandRoles, getParameterNames, getRequiredType, getResultItemType, getResultItemType, getRetainedStaticContext, getStaticBaseUriString, getStreamerName, getUniqueIdentifier, getUniStringArg, hashCode, importAttributes, isSequenceVariadic, isTrustedResultType, makeCall, makeFunction, makeFunction40, makeFunctionCall, makeOptimizedFunctionCall, makeTrueFunctionCall, resultIfEmpty, setArity, setDetails, setRetainedStaticContext, supplyTypeInformation, toShortString, toString, typeCheckCallerMethods inherited from class net.sf.saxon.functions.AbstractFunction
atomize, deepEqual40, deepEquals, effectiveBooleanValue, getAnnotations, getUnicodeStringValue, isArray, isMap, makeNewContext, simplify, typeCheckMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.sf.saxon.om.FunctionItem
getGenreMethods inherited from interface net.sf.saxon.om.GroundedValue
asIterable, concatenate, containsNode, materializeMethods inherited from interface net.sf.saxon.om.Item
getLabel, getLength, getStringValue, head, isStreamed, itemAt, iterate, reduce, subsequenceMethods inherited from interface net.sf.saxon.om.Sequence
makeRepeatable
-
Field Details
-
ID
public static final int ID- See Also:
-
ELEMENT_WITH_ID
public static final int ELEMENT_WITH_ID- See Also:
-
-
Constructor Details
-
SuperId
public SuperId()
-
-
Method Details
-
dependsOnContext
public boolean dependsOnContext()Description copied from interface:IContextAccessorFunctionAsk whether this function is actually dependent on the dynamic context- Specified by:
dependsOnContextin interfaceIContextAccessorFunction- Returns:
- true if the function cannot be used unless the dynamic context is first bound
-
getOp
public abstract int getOp() -
getSpecialProperties
Get the static properties of this expression (other than its type). The result is bit-signficant. These properties are used for optimizations. In general, if property bit is set, it is true, but if it is unset, the value is unknown.- Overrides:
getSpecialPropertiesin classSystemFunction- Parameters:
arguments- the actual arguments to the call- Returns:
- the properties
-
getIdSingle
public static SequenceIterator getIdSingle(TreeInfo doc, UnicodeString idrefs, int operation) throws XPathException Get an iterator over the nodes that have an id equal to one of the values is a whitespace separated string- Parameters:
doc- The document to be searchedidrefs- a string containing zero or more whitespace-separated ID values to be found in the documentoperation- eitherIDorELEMENT_WITH_ID- Returns:
- an iterator over the nodes whose ID is one of the specified values
- Throws:
XPathException- if an error occurs
-
getIdMultiple
public static SequenceIterator getIdMultiple(TreeInfo doc, SequenceIterator idrefs, int operation) throws XPathException Get an iterator over the nodes that have an id equal to one of the values is a set of whitespace separated strings- Parameters:
doc- The document to be searchedidrefs- an iterator over a set of strings each of which is a string containing zero or more whitespace-separated ID values to be found in the documentoperation- distinguishes id() and element-with-id()- Returns:
- an iterator over the nodes whose ID is one of the specified values
- Throws:
XPathException- if an error occurs
-
call
Evaluate the expression- Specified by:
callin interfaceCallable- Parameters:
context- the dynamic evaluation contextarguments- the values of the arguments, supplied as SequenceIterators- Returns:
- the result of the evaluation, in the form of a SequenceIterator
- Throws:
XPathException- if a dynamic error occurs during the evaluation of the expression
-
bindContext
Bind context information to appear as part of the function's closure. If this method has been called, the supplied context will be used in preference to the context at the point where the function is actually called.- Specified by:
bindContextin interfaceIContextAccessorFunction- Parameters:
context- the context to which the function applies. Must not be null.- Throws:
XPathException
-