java.lang.Object
org.apache.jena.sparql.expr.ExprNode
org.apache.jena.sparql.expr.ExprNone
- All Implemented Interfaces:
Expr
Marker, used in place of a null. This may be tested for using
==-
Field Summary
Fields inherited from interface org.apache.jena.sparql.expr.Expr
CMP_EQUAL, CMP_GREATER, CMP_INDETERMINATE, CMP_LESS, CMP_UNEQUAL, NONE -
Method Summary
Modifier and TypeMethodDescriptionapplyNodeTransform(NodeTransform transform) Rewrite, applying a node->node transformationcopySubstitute(Binding binding) Deep copy with substitutionbooleanGeneral equality operation - consider this to be 'protected'eval(Binding binding, FunctionEnv env) Evaluate this expression against the bindingVariables used by this expression.inthashCode()Exprare used in both syntax and algebra.voidvisit(ExprVisitor visitor) Methods inherited from class org.apache.jena.sparql.expr.ExprNode
asVar, deepCopy, equals, equalsBySyntax, getConstant, getExpr, getExprVar, getFunction, getGraphPattern, getVarName, isConstant, isExpr, isFunction, isGraphPattern, isSatisfied, isVariable, toString
-
Method Details
-
visit
-
eval
Description copied from interface:ExprEvaluate this expression against the binding -
getVarsMentioned
Description copied from interface:ExprVariables used by this expression.- Specified by:
getVarsMentionedin interfaceExpr- Overrides:
getVarsMentionedin classExprNode- See Also:
-
hashCode
public int hashCode()Description copied from interface:ExprExprare used in both syntax and algebra. There is no syntax to algebra translation step because the parser uses operator precedence to build the right evaluation structure directly.The exceptions to this are the
NOT EXISTSandEXISTSexpressions which involve a query pattern. As a result there are different ways in syntax to produce the same algebra form.Two
Exprare considered equal if they are equal as algebra expressions.hashCodeandequalsmust implement that.There is also
equalsBySyntax. Because two different syntax forms can yield the same algebra, but two different algebra forms must be different syntax,equalsBySyntaximpliesequals(by algebra).Hence, different
hashCode=> notequalsBySyntax. -
equals
Description copied from interface:ExprGeneral equality operation - consider this to be 'protected' -
copySubstitute
Description copied from interface:ExprDeep copy with substitution- Specified by:
copySubstitutein interfaceExpr- Specified by:
copySubstitutein classExprNode
-
applyNodeTransform
Description copied from interface:ExprRewrite, applying a node->node transformation- Specified by:
applyNodeTransformin interfaceExpr- Specified by:
applyNodeTransformin classExprNode
-