Package net.sf.saxon.functions
Class Lang
java.lang.Object
net.sf.saxon.functions.AbstractFunction
net.sf.saxon.functions.SystemFunction
net.sf.saxon.functions.Lang
- All Implemented Interfaces:
Callable,IContextAccessorFunction,IFunctionWithRetainedParameterNames,FunctionItem,GroundedValue,Item,Sequence
-
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 booleanTest whether the context node has the given language attributeMethods 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
-
Constructor Details
-
Lang
public Lang()
-
-
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
-
isLang
Test whether the context node has the given language attribute- Parameters:
arglang- the language being testedtarget- the target node- Returns:
- true if the node is tagged with this language code
-
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
-