Class TernaryOperator
- java.lang.Object
-
- org.apache.sling.scripting.sightly.compiler.expression.nodes.TernaryOperator
-
- All Implemented Interfaces:
ExpressionNode
public final class TernaryOperator extends java.lang.Object implements ExpressionNode
Defines the HTL ternary operator (e.g.condition ? then : else).
-
-
Constructor Summary
Constructors Constructor Description TernaryOperator(ExpressionNode condition, ExpressionNode thenBranch, ExpressionNode elseBranch)Creates the operator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Taccept(NodeVisitor<T> visitor)Accept a visitor to process this node.ExpressionNodegetCondition()Returns the condition of this operator.ExpressionNodegetElseBranch()Returns the "else" branch.ExpressionNodegetThenBranch()Returns the "then" branch.java.lang.StringtoString()
-
-
-
Constructor Detail
-
TernaryOperator
public TernaryOperator(ExpressionNode condition, ExpressionNode thenBranch, ExpressionNode elseBranch)
Creates the operator.- Parameters:
condition- the operator's conditionthenBranch- the "then" branchelseBranch- the "else" branch
-
-
Method Detail
-
getCondition
public ExpressionNode getCondition()
Returns the condition of this operator.- Returns:
- the condition of this operator
-
getThenBranch
public ExpressionNode getThenBranch()
Returns the "then" branch.- Returns:
- the "then" branch
-
getElseBranch
public ExpressionNode getElseBranch()
Returns the "else" branch.- Returns:
- the "else" branch
-
accept
public <T> T accept(NodeVisitor<T> visitor)
Description copied from interface:ExpressionNodeAccept a visitor to process this node.- Specified by:
acceptin interfaceExpressionNode- Type Parameters:
T- the type of the visitor- Parameters:
visitor- The visitor- Returns:
- the node after it has been evaluated by the visitor
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-