public final class ValueComparison extends BinaryExpression implements ComparisonExpression, Negatable
operatorEFFECTIVE_BOOLEAN_VALUE, EVALUATE_METHOD, ITEM_FEED_METHOD, ITERATE_METHOD, MAX_COST, MAX_SEQUENCE_LENGTH, MAX_STRING_LENGTH, PROCESS_METHOD, staticProperties, UNBOUNDED_LOWER, UNBOUNDED_UPPER, UPDATE_METHOD, WATCH_METHOD| Constructor and Description |
|---|
ValueComparison(Expression p1,
int op,
Expression p2)
Create a comparison expression identifying the two operands and the operator
|
| Modifier and Type | Method and Description |
|---|---|
static boolean |
compare(AtomicValue v0,
int op,
AtomicValue v1,
AtomicComparer comparer,
boolean checkTypes)
Compare two atomic values, using a specified operator and collation
|
int |
computeCardinality()
Determine the static cardinality.
|
boolean |
convertsUntypedToOther()
Determine whether untyped atomic values should be converted to the type of the other operand
|
Expression |
copy(RebindingMap rebindings)
Copy an expression.
|
boolean |
effectiveBooleanValue(XPathContext context)
Evaluate the effective boolean value of the expression
|
boolean |
equals(java.lang.Object other)
Is this expression the same as another expression?
|
BooleanValue |
evaluateItem(XPathContext context)
Evaluate the expression in a given context
|
protected void |
explainExtraAttributes(ExpressionPresenter out)
Add subclass-specific attributes to the expression tree explanation.
|
AtomicComparer |
getAtomicComparer()
Get the AtomicComparer used to compare atomic values.
|
java.lang.String |
getExpressionName()
Get a name identifying the kind of expression, in terms meaningful to a user.
|
ItemType |
getItemType()
Determine the data type of the expression
|
BooleanValue |
getResultWhenEmpty()
Get the result to be returned if one of the operands is an empty sequence
|
int |
getSingletonOperator()
Get the primitive (singleton) operator used: one of Token.FEQ, Token.FNE, Token.FLT, Token.FGT,
Token.FLE, Token.FGE
|
UType |
getStaticUType(UType contextItemType)
Get the static type of the expression as a UType, following precisely the type
inference rules defined in the XSLT 3.0 specification.
|
boolean |
isNegatable(TypeHierarchy th)
Check whether this specific instance of the expression is negatable
|
boolean |
needsRuntimeComparabilityCheck()
Determine whether a run-time check is needed to check that the types of the arguments
are comparable
|
Expression |
negate()
Return the negation of this value comparison: that is, a value comparison that returns true()
if and only if the original returns false().
|
Expression |
optimize(ExpressionVisitor visitor,
ContextItemStaticInfo contextInfo)
Perform optimisation of an expression and its subexpressions.
|
void |
setAtomicComparer(AtomicComparer comparer)
Set the AtomicComparer used to compare atomic values
|
void |
setResultWhenEmpty(BooleanValue value)
Set the result to be returned if one of the operands is an empty sequence
|
java.lang.String |
tag()
Get the element name used to identify this expression in exported expression format
|
Expression |
typeCheck(ExpressionVisitor visitor,
ContextItemStaticInfo contextInfo)
Type-check the expression
|
computeHashCode, computeSpecialProperties, displayOperator, export, getImplementationMethod, getLhs, getLhsExpression, getOperandRole, getOperator, getRhs, getRhsExpression, isAssociative, isCommutative, isInverse, operands, setFlattened, setLhsExpression, setRhsExpression, toShortString, toStringaddToPathMap, adoptChildExpression, allowExtractingCommonSubexpressions, checkedOperands, checkForUpdatingSubexpressions, checkPermittedContents, computeDependencies, computeStaticProperties, dynamicError, evaluateAsString, evaluatePendingUpdates, explain, getCardinality, getConfiguration, getConstructType, getCost, getDependencies, getEvaluationMethod, getExtraProperty, getIntegerBounds, getInterpretedExpression, getIntrinsicDependencies, getLocalRetainedStaticContext, getLocation, getNetCost, getObjectName, getPackageData, getParentExpression, getProperties, getProperty, getRetainedStaticContext, getScopingExpression, getSlotsUsed, getSpecialProperties, getStaticBaseURI, getStaticBaseURIString, getStaticType, getStreamerName, hasCompatibleStaticContext, hashCode, hasSpecialProperty, hasVariableBinding, identityHashCode, implementsStaticTypeCheck, isCallOn, isEqual, isIdentical, isInstruction, isLiftable, isMultiThreaded, isStaticPropertiesKnown, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, iterate, markTailFunctionCalls, operandList, operandSparseList, optimizeChildren, prepareForStreaming, process, resetLocalStaticProperties, restoreParentPointers, setEvaluationMethod, setExtraProperty, setFiltered, setLocation, setParentExpression, setRetainedStaticContext, setRetainedStaticContextLocally, setRetainedStaticContextThoroughly, setStaticProperty, simplify, simplifyChildren, staticTypeCheck, suppressValidation, toPattern, typeCheckChildren, typeError, unordered, verifyParentPointersclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetLhs, getLhsExpression, getRhs, getRhsExpressionpublic ValueComparison(Expression p1, int op, Expression p2)
p1 - the left-hand operandop - the operator, as a token returned by the Tokenizer (e.g. Token.LT)p2 - the right-hand operandpublic java.lang.String getExpressionName()
getExpressionName in class Expressionpublic void setAtomicComparer(AtomicComparer comparer)
comparer - the AtomicComparerpublic AtomicComparer getAtomicComparer()
getAtomicComparer in interface ComparisonExpressionpublic int getSingletonOperator()
getSingletonOperator in interface ComparisonExpressionpublic boolean convertsUntypedToOther()
convertsUntypedToOther in interface ComparisonExpressionpublic void setResultWhenEmpty(BooleanValue value)
value - the result to be returned if an operand is empty. Supply null to mean the empty sequence.public BooleanValue getResultWhenEmpty()
public boolean needsRuntimeComparabilityCheck()
public Expression typeCheck(ExpressionVisitor visitor, ContextItemStaticInfo contextInfo) throws XPathException
typeCheck in class BinaryExpressionvisitor - an expression visitorcontextInfo - Information available statically about the context item: whether it is (possibly)
absent; its static type; its streaming posture.XPathException - if an error is discovered during this phase
(typically a type error)public Expression optimize(ExpressionVisitor visitor, ContextItemStaticInfo contextInfo) throws XPathException
This method is called after all references to functions and variables have been resolved to the declaration of the function or variable, and after all type checking has been done.
optimize in class BinaryExpressionvisitor - an expression visitorcontextInfo - 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_TYPEXPathException - if an error is discovered during this phase
(typically a type error)public boolean isNegatable(TypeHierarchy th)
isNegatable in interface Negatableth - the type hierarchypublic Expression negate()
public boolean equals(java.lang.Object other)
BinaryExpressionequals in class BinaryExpressionother - the other operand; the result is false if this is not an Expressionpublic Expression copy(RebindingMap rebindings)
copy in class Expressionrebindings - variables that need to be re-boundpublic boolean effectiveBooleanValue(XPathContext context) throws XPathException
effectiveBooleanValue in class Expressioncontext - the given context for evaluationXPathException - if any dynamic error occurs evaluating the
expressionpublic static boolean compare(AtomicValue v0, int op, AtomicValue v1, AtomicComparer comparer, boolean checkTypes) throws XPathException
v0 - the first operandop - the operator, as defined by constants such as Token.FEQ or
Token.FLTv1 - the second operandcomparer - used to compare values. If the comparer is context-sensitive then the context must
already have been bound using comparer.provideContext().checkTypes - set to true if it is necessary to check that the types of the arguments are comparableXPathException - if the values are not comparablepublic BooleanValue evaluateItem(XPathContext context) throws XPathException
evaluateItem in class Expressioncontext - the given context for evaluationXPathException - if any dynamic error occurs evaluating the
expressionpublic ItemType getItemType()
getItemType in class Expressionpublic UType getStaticUType(UType contextItemType)
getStaticUType in class ExpressioncontextItemType - the static type of the context itempublic int computeCardinality()
computeCardinality in class BinaryExpressionStaticProperty.ALLOWS_ZERO_OR_ONE,
StaticProperty.EXACTLY_ONE, StaticProperty.ALLOWS_ONE_OR_MORE,
StaticProperty.ALLOWS_ZERO_OR_MORE. May also return StaticProperty.ALLOWS_ZERO if
the result is known to be an empty sequence, or StaticProperty.ALLOWS_MANY if
if is known to return a sequence of length two or more.public java.lang.String tag()
BinaryExpressiontag in class BinaryExpressionprotected void explainExtraAttributes(ExpressionPresenter out)
BinaryExpressionexplainExtraAttributes in class BinaryExpressionout - the output destination for the displayed expression treeCopyright (c) 2004-2020 Saxonica Limited. All rights reserved.