Uses of Class
org.apache.sling.scripting.sightly.compiler.expression.Expression
Packages that use Expression
Package
Description
The
org.apache.sling.scripting.sightly.compiler.expression package defines the API for
Expression processing.The
org.apache.sling.scripting.sightly.compiler.expression.nodes package exposes the various
ExpressionNode types.-
Uses of Expression in org.apache.sling.scripting.sightly.compiler.expression
Methods in org.apache.sling.scripting.sightly.compiler.expression that return ExpressionModifier and TypeMethodDescriptionExpression.withNode(ExpressionNode node) Return a copy, but with the specified node as root.Expression.withRawText(String rawText) Return a copy that provides information about the expression's raw text. -
Uses of Expression in org.apache.sling.scripting.sightly.compiler.expression.nodes
Methods in org.apache.sling.scripting.sightly.compiler.expression.nodes that return ExpressionModifier and TypeMethodDescriptionBinaryOperation.getParentExpression()Returns the parent expression, if any.Methods in org.apache.sling.scripting.sightly.compiler.expression.nodes with parameters of type ExpressionModifier and TypeMethodDescriptionBinaryOperation.withParentExpression(Expression parentExpression) Returns a copy of thisBinaryOperationthat contains information about the node's parent expression.Constructors in org.apache.sling.scripting.sightly.compiler.expression.nodes with parameters of type ExpressionModifierConstructorDescriptionBinaryOperation(BinaryOperator operator, ExpressionNode leftOperand, ExpressionNode rightOperand, Expression parentExpression) Creates aBinaryOperation.