- All Superinterfaces:
ExpressionTree
,Tree
A tree node for the conditional operator ? :.
For example:
condition ? trueExpression : falseExpression
- Since:
- 9
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the condition expression of this ternary expression.Returns the false part of this ternary expression.Returns the true part of this ternary expression.Methods inherited from interface org.openjdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition
-
Method Details
-
getCondition
ExpressionTree getCondition()Returns the condition expression of this ternary expression.- Returns:
- the condition expression
-
getTrueExpression
ExpressionTree getTrueExpression()Returns the true part of this ternary expression.- Returns:
- the 'true' part expression
-
getFalseExpression
ExpressionTree getFalseExpression()Returns the false part of this ternary expression.- Returns:
- the 'false' part expression
-