Class ValueOf
java.lang.Object
net.sf.saxon.expr.ComputedExpression
net.sf.saxon.instruct.Instruction
net.sf.saxon.instruct.SimpleNodeConstructor
net.sf.saxon.instruct.ValueOf
- All Implemented Interfaces:
Serializable, SourceLocator, Container, Expression, TailCallReturner, InstructionInfoProvider
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 SimpleNodeConstructor
selectFields inherited from class ComputedExpression
locationId, staticPropertiesFields inherited from interface Expression
EVALUATE_METHOD, ITERATE_METHOD, PROCESS_METHOD -
Constructor Summary
Constructors -
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.voiddisplay(int level, PrintStream out, Configuration config) Display this instruction as an expression, for diagnosticsevaluateItem(XPathContext context) Evaluate this expression, returning the resulting text node to the callerintGet the name of this instruction for diagnostic and tracing purposesGet the item type of the items returned by evaluating this instructionbooleanDetermine whether this is really an xsl:number instructionvoidlocalTypeCheck(StaticContext env, ItemType contextItemType) processLeavingTail(XPathContext context) Process this instruction, sending the resulting text node to the current output destinationprotected voidpromoteInst(PromotionOffer offer) Offer promotion for subexpressions.voidIndicate that this is really an xsl:nunber instructionMethods inherited from class SimpleNodeConstructor
checkContent, computeSpecialProperties, createsNewNodes, evaluateNameCode, expandChildren, getSelect, iterate, iterateSubExpressions, optimize, replaceSubExpression, setSelect, simplify, typeCheckMethods inherited from class Instruction
appendItem, assembleParams, assembleTunnelParams, dynamicError, evaluateAsString, getImplementationMethod, getInstructionInfo, getSourceLocator, isXSLT, process, promoteMethods inherited from class ComputedExpression
adoptChildExpression, computeDependencies, computeStaticProperties, doPromotion, dynamicError, effectiveBooleanValue, getCardinality, getColumnNumber, getConstructType, getDependencies, getExecutable, getHostLanguage, getIntrinsicDependencies, getLineNumber, getLocationId, getLocationProvider, getParentExpression, getPublicId, getSlotsUsed, getSpecialProperties, getSystemId, hasBadParentPointer, markTailFunctionCalls, resetStaticProperties, setLocationId, setParentExpression, setParentExpression, suppressValidation, typeErrorMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface SourceLocator
getColumnNumber, getLineNumber, getPublicId, getSystemId
-
Constructor Details
-
ValueOf
-
-
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 -
getInstructionNameCode
public int getInstructionNameCode()Get the name of this instruction for diagnostic and tracing purposes- Overrides:
getInstructionNameCodein classInstruction
-
promoteInst
Offer promotion for subexpressions. The offer will be accepted if the subexpression is not dependent on the factors (e.g. the context item) identified in the PromotionOffer. By default the offer is not accepted - this is appropriate in the case of simple expressions such as constant values and variable references where promotion would give no performance advantage. This method is always called at compile time.- Overrides:
promoteInstin classSimpleNodeConstructor- Parameters:
offer- details of the offer, for example the offer to move expressions that don't depend on the context to an outer level in the containing expression- Throws:
XPathException- if any error is detected
-
getItemType
Description copied from class:InstructionGet the item type of the items returned by evaluating this instruction- Specified by:
getItemTypein interfaceExpression- Overrides:
getItemTypein classInstruction- Parameters:
th-- Returns:
- the static item type of the instruction
-
computeCardinality
public int computeCardinality()Description copied from class:InstructionGet the cardinality of the sequence returned by evaluating this instruction- Overrides:
computeCardinalityin classInstruction- Returns:
- the static cardinality
-
localTypeCheck
- Specified by:
localTypeCheckin classSimpleNodeConstructor
-
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.- Specified by:
checkPermittedContentsin interfaceExpression- Overrides:
checkPermittedContentsin classComputedExpression- Parameters:
parentType- The schema typeenv- the static contextwhole-- Throws:
XPathException- if the expression doesn't match the required content type
-
convertToStringJoin
Convert this value-of instruction to an expression that delivers the string-value of the resulting text node. This will often be a call on the string-join function. -
processLeavingTail
Process this instruction, sending the resulting text node to the current output destination- Specified by:
processLeavingTailin interfaceTailCallReturner- Specified by:
processLeavingTailin classInstruction- Parameters:
context-- Returns:
- Always returns null
- Throws:
XPathException
-
evaluateItem
Evaluate this expression, returning the resulting text node to the caller- Specified by:
evaluateItemin interfaceExpression- Overrides:
evaluateItemin classSimpleNodeConstructor- Parameters:
context-- Returns:
- the parentless text node that results from evaluating this instruction, or null to represent an empty sequence
- Throws:
XPathException
-
display
Display this instruction as an expression, for diagnostics- Specified by:
displayin interfaceExpression- Overrides:
displayin classSimpleNodeConstructor- Parameters:
level- indentation level for this expressionout- Output destinationconfig-
-