|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.saxon.expr.Expression net.sf.saxon.expr.UnaryExpression net.sf.saxon.expr.NumericPromoter
public abstract class NumericPromoter
A NumericPromoter performs numeric promotion on each item in a supplied sequence. There are two subclasses, to handle promotion to double and promotion to float
Field Summary |
---|
Fields inherited from class net.sf.saxon.expr.UnaryExpression |
---|
operand |
Fields inherited from class net.sf.saxon.expr.Expression |
---|
EVALUATE_METHOD, ITERATE_METHOD, locationId, PROCESS_METHOD, staticProperties |
Constructor Summary | |
---|---|
NumericPromoter(Expression exp)
|
Method Summary | |
---|---|
Item |
evaluateItem(XPathContext context)
Evaluate as an Item. |
void |
explain(ExpressionPresenter out)
Diagnostic print of expression structure. |
SequenceIterator |
iterate(XPathContext context)
Iterate over the sequence of values |
Expression |
optimize(ExpressionVisitor visitor,
ItemType contextItemType)
Optimize the expression |
protected abstract AtomicValue |
promote(AtomicValue value,
XPathContext context)
Perform the promotion |
Expression |
simplify(ExpressionVisitor visitor)
Simplify an expression |
Expression |
typeCheck(ExpressionVisitor visitor,
ItemType contextItemType)
Type-check the expression |
Methods inherited from class net.sf.saxon.expr.UnaryExpression |
---|
computeCardinality, computeSpecialProperties, displayExpressionName, displayOperator, equals, getBaseExpression, getItemType, hashCode, iterateSubExpressions, promote, replaceSubExpression, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public NumericPromoter(Expression exp)
Method Detail |
---|
public Expression simplify(ExpressionVisitor visitor) throws XPathException
simplify
in class UnaryExpression
visitor
- an expression visitor
XPathException
- if an error is discovered during expression
rewritingpublic Expression typeCheck(ExpressionVisitor visitor, ItemType contextItemType) throws XPathException
typeCheck
in class UnaryExpression
visitor
- an expression visitorcontextItemType
- the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPE
XPathException
- if an error is discovered during this phase
(typically a type error)public Expression optimize(ExpressionVisitor visitor, ItemType contextItemType) throws XPathException
optimize
in class UnaryExpression
visitor
- an expression visitorcontextItemType
- the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPE
XPathException
- if an error is discovered during this phase
(typically a type error)public SequenceIterator iterate(XPathContext context) throws XPathException
iterate
in interface SequenceIterable
iterate
in class Expression
context
- supplies the context for evaluation
XPathException
- if any dynamic error occurs evaluating the
expressionpublic Item evaluateItem(XPathContext context) throws XPathException
evaluateItem
in interface EvaluableItem
evaluateItem
in class Expression
context
- The context in which the expression is to be evaluated
XPathException
- if any dynamic error occurs evaluating the
expressionprotected abstract AtomicValue promote(AtomicValue value, XPathContext context) throws XPathException
value
- the numeric or untyped atomic value to be promotedcontext
- the XPath dynamic evaluation context
XPathException
public void explain(ExpressionPresenter out)
explain
in class UnaryExpression
out
- the expression presenter used to display the structure
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |