Package net.sf.saxon.expr.instruct
Class ValueOf
java.lang.Object
net.sf.saxon.expr.Expression
net.sf.saxon.expr.instruct.Instruction
net.sf.saxon.expr.instruct.SimpleNodeConstructor
net.sf.saxon.expr.instruct.ValueOf
- All Implemented Interfaces:
Serializable,SourceLocator,LocationProvider,SaxonLocator,TailCallReturner,InstructionInfo,Locator
An xsl:value-of element in the stylesheet.
The xsl:value-of element takes attributes:
The xsl:value-of element takes attributes:
- a mandatory attribute select="expression". This must be a valid String expression
- an optional disable-output-escaping attribute, value "yes" or "no"
- an optional separator attribute. This is handled at compile-time: if the separator attribute is present, the select expression passed in here will be a call to the string-join() function.
- See Also:
-
Field Summary
Fields inherited from class net.sf.saxon.expr.instruct.SimpleNodeConstructor
selectFields inherited from class net.sf.saxon.expr.Expression
EFFECTIVE_BOOLEAN_VALUE, EVALUATE_METHOD, EVENT_FEED_METHOD, ITEM_FEED_METHOD, ITERATE_METHOD, locationId, MAX_SEQUENCE_LENGTH, MAX_STRING_LENGTH, PROCESS_METHOD, PUSH_SELECTION, staticProperties, UNBOUNDED_LOWER, UNBOUNDED_UPPER, WATCH_METHOD -
Constructor Summary
ConstructorsConstructorDescriptionValueOf(Expression select, boolean disable, boolean noNodeIfEmpty) Create a new ValueOf expression -
Method Summary
Modifier and TypeMethodDescriptionvoidcheckPermittedContents(SchemaType parentType, StaticContext env, boolean whole) Check statically that the results of the expression are capable of constructing the content of a given schema type.intGet the cardinality of the sequence returned by evaluating this instructionConvert this value-of instruction to an expression that delivers the string-value of the resulting text node as an untyped atomic value.copy()Copy an expression.evaluateItem(XPathContext context) Evaluate this expression, returning the resulting text node to the callervoidDiagnostic print of expression structure.intGet the name of this instruction for diagnostic and tracing purposesGet the item type of the items returned by evaluating this instructionintTest for any special options such as disable-output-escapingbooleanTest whether disable-output-escaping was requestedbooleanbooleanDetermine whether this is really an xsl:number instructionvoidlocalTypeCheck(ExpressionVisitor visitor, ExpressionVisitor.ContextItemType contextItemType) Method to perform type-checking specific to the kind of instructionprocessLeavingTail(XPathContext context) Process this instructionvoidprocessValue(CharSequence value, XPathContext context) Process the value of the node, to create the new node.voidIndicate that this is really an xsl:nunber instructionMethods inherited from class net.sf.saxon.expr.instruct.SimpleNodeConstructor
checkContent, computeSpecialProperties, createsNewNodes, evaluateNodeName, getContentExpression, iterate, iterateSubExpressions, optimize, promoteInst, replaceSubExpression, setSelect, simplify, typeCheckMethods inherited from class net.sf.saxon.expr.instruct.Instruction
assembleParams, assembleTunnelParams, dynamicError, evaluateAsString, getConstructType, getExpressionName, getImplementationMethod, getInstructionName, getIteratorFromProcessMethod, getSourceLocator, isXSLT, process, promoteMethods inherited from class net.sf.saxon.expr.Expression
addToPathMap, adoptChildExpression, checkForUpdatingSubexpressions, computeDependencies, computeStaticProperties, doPromotion, dynamicError, effectiveBooleanValue, evaluatePendingUpdates, explain, getCardinality, getColumnNumber, getColumnNumber, getContainer, getDependencies, getEvaluationMethod, getExecutable, getHostLanguage, getIntegerBounds, getIntrinsicDependencies, getLineNumber, getLineNumber, getLocationId, getLocationProvider, getObjectName, getProperties, getProperty, getPublicId, getSlotsUsed, getSpecialProperties, getSystemId, getSystemId, hasLoopingSubexpression, hasVariableBinding, implementsStaticTypeCheck, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, iterateEvents, iterateSameFocusSubExpressions, markTailFunctionCalls, resetLocalStaticProperties, setContainer, setEvaluationMethod, setFiltered, setFlattened, setLocationId, staticTypeCheck, suppressValidation, toString, typeErrorMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface javax.xml.transform.SourceLocator
getColumnNumber, getLineNumber, getPublicId, getSystemId
-
Constructor Details
-
ValueOf
Create a new ValueOf expression- Parameters:
select- the select expressiondisable- true if disable-output-escaping is in forcenoNodeIfEmpty- true if the instruction is to return () if the select expression is (), false if it is to return an empty text node
-
-
Method Details
-
setIsNumberingInstruction
public void setIsNumberingInstruction()Indicate that this is really an xsl:nunber instruction -
isNumberingInstruction
public boolean isNumberingInstruction()Determine whether this is really an xsl:number instruction- Returns:
- true if this derives from xsl:number
-
isNoNodeIfEmpty
public boolean isNoNodeIfEmpty() -
getInstructionNameCode
public int getInstructionNameCode()Get the name of this instruction for diagnostic and tracing purposes- Overrides:
getInstructionNameCodein classInstruction- Returns:
- the namecode of the instruction name
-
getOptions
public int getOptions()Test for any special options such as disable-output-escaping- Returns:
- any special options
-
isDisableOutputEscaping
public boolean isDisableOutputEscaping()Test whether disable-output-escaping was requested- Returns:
- true if disable-output-escaping was requested
-
getItemType
Description copied from class:InstructionGet the item type of the items returned by evaluating this instruction- Overrides:
getItemTypein classInstruction- Parameters:
th- the type hierarchy cache- Returns:
- the static item type of the instruction
-
computeCardinality
public int computeCardinality()Description copied from class:SimpleNodeConstructorGet the cardinality of the sequence returned by evaluating this instruction- Overrides:
computeCardinalityin classSimpleNodeConstructor- Returns:
- the static cardinality
-
localTypeCheck
public void localTypeCheck(ExpressionVisitor visitor, ExpressionVisitor.ContextItemType contextItemType) Description copied from class:SimpleNodeConstructorMethod to perform type-checking specific to the kind of instruction- Specified by:
localTypeCheckin classSimpleNodeConstructor- Parameters:
visitor- an expression visitorcontextItemType- the static type of the context item
-
copy
Copy an expression. This makes a deep copy.- Specified by:
copyin classExpression- Returns:
- the copy of the original expression
-
checkPermittedContents
public void checkPermittedContents(SchemaType parentType, StaticContext env, boolean whole) throws XPathException Check statically that the results of the expression are capable of constructing the content of a given schema type.- Overrides:
checkPermittedContentsin classExpression- Parameters:
parentType- The schema typeenv- the static contextwhole- true if this expression is to account for the whole value of the type- Throws:
XPathException- if the expression doesn't match the required content type
-
convertToCastAsString
Convert this value-of instruction to an expression that delivers the string-value of the resulting text node as an untyped atomic value.- Returns:
- the converted expression
-
processLeavingTail
Process this instruction- Specified by:
processLeavingTailin interfaceTailCallReturner- Overrides:
processLeavingTailin classSimpleNodeConstructor- Parameters:
context- the dynamic context of the transformation- Returns:
- a TailCall to be executed by the caller, always null for this instruction
- Throws:
XPathException- if a dynamic error occurs during the evaluation of the instruction
-
processValue
Process the value of the node, to create the new node.- Specified by:
processValuein classSimpleNodeConstructor- Parameters:
value- the string value of the new nodecontext- the dynamic evaluation context- Throws:
XPathException
-
evaluateItem
Evaluate this expression, returning the resulting text node to the caller- Overrides:
evaluateItemin classSimpleNodeConstructor- Parameters:
context- the dynamic evaluation context- Returns:
- the parentless text node that results from evaluating this instruction, or null to represent an empty sequence
- Throws:
XPathException
-
explain
Diagnostic print of expression structure. The abstract expression tree is written to the supplied output destination.- Specified by:
explainin classExpression- Parameters:
out- the expression presenter used to display the structure
-