net.sf.saxon.expr
Class NegateExpression
java.lang.Object
net.sf.saxon.expr.Expression
net.sf.saxon.expr.UnaryExpression
net.sf.saxon.expr.NegateExpression
- All Implemented Interfaces:
- Serializable, SourceLocator, Container, EvaluableItem, SequenceIterable, InstructionInfoProvider
public class NegateExpression
- extends UnaryExpression
Negate Expression: implements the unary minus operator.
This expression is initially created as an ArithmeticExpression (or in backwards
compatibility mode, an ArithmeticExpression10) to take advantage of the type checking code.
So we don't need to worry about type checking or argument conversion.
- See Also:
- Serialized Form
Methods inherited from class net.sf.saxon.expr.UnaryExpression |
computeCardinality, computeSpecialProperties, display, equals, getBaseExpression, hashCode, iterateSubExpressions, optimize, promote, replaceSubExpression, simplify |
Methods inherited from class net.sf.saxon.expr.Expression |
adoptChildExpression, checkPermittedContents, computeDependencies, computeStaticProperties, doPromotion, effectiveBooleanValue, evaluateAsString, getCardinality, getColumnNumber, getContainingProcedure, getDependencies, getExecutable, getHostLanguage, getImplementationMethod, getInstructionInfo, getIntrinsicDependencies, getLineNumber, getLocationId, getLocationProvider, getParentExpression, getPublicId, getSlotsUsed, getSpecialProperties, getSystemId, hasBadParentPointer, iterate, markTailFunctionCalls, process, resetStaticProperties, setLocationId, setParentExpression, setParentExpression, suppressValidation |
NegateExpression
public NegateExpression(Expression base)
setBackwardsCompatible
public void setBackwardsCompatible(boolean compatible)
typeCheck
public Expression typeCheck(StaticContext env,
ItemType contextItemType)
throws XPathException
- Description copied from class:
UnaryExpression
- Type-check the expression. Default implementation for unary operators that accept
any kind of operand
- Overrides:
typeCheck
in class UnaryExpression
- Parameters:
env
- the static context of the expressioncontextItemType
- 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
- Returns:
- the original expression, rewritten to perform necessary run-time type checks,
and to perform other type-related optimizations
- Throws:
StaticError
- if an error is discovered during this phase
(typically a type error)
XPathException
getItemType
public ItemType getItemType(TypeHierarchy th)
- Determine the data type of the expression, if this is known statically
- Overrides:
getItemType
in class UnaryExpression
- Parameters:
th
- the type hierarchy cache
- Returns:
- the item type of the items in the result sequence, insofar as this
is known statically.
evaluateItem
public Item evaluateItem(XPathContext context)
throws XPathException
- Evaluate the expression.
- Specified by:
evaluateItem
in interface EvaluableItem
- Overrides:
evaluateItem
in class Expression
- Parameters:
context
- The context in which the expression is to be evaluated
- Returns:
- the node or atomic value that results from evaluating the
expression; or null to indicate that the result is an empty
sequence
- Throws:
XPathException
- if any dynamic error occurs evaluating the
expression
Copyright (C) Michael H. Kay. All rights reserved.