Package net.sf.saxon.functions
Class UnparsedEntity
java.lang.Object
net.sf.saxon.functions.AbstractFunction
net.sf.saxon.functions.SystemFunction
net.sf.saxon.functions.UnparsedEntity
- All Implemented Interfaces:
Callable,IContextAccessorFunction,IFunctionWithRetainedParameterNames,FunctionItem,GroundedValue,Item,Sequence
- Direct Known Subclasses:
UnparsedEntity.UnparsedEntityPublicId,UnparsedEntity.UnparsedEntityUri
Implements the unparsed-entity-uri() function defined in XSLT 1.0
and the unparsed-entity-public-id() function defined in XSLT 2.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic class -
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 contextabstract intgetOp()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, getSpecialProperties, 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
-
URI
public static int URI -
PUBLIC_ID
public static int PUBLIC_ID
-
-
Constructor Details
-
UnparsedEntity
public UnparsedEntity()
-
-
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() -
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
-