- 
- All Superinterfaces:
- ConditionalLoopTree,- LoopTree,- StatementTree,- Tree
 
 
 public interface DoWhileLoopTree extends ConditionalLoopTree A tree node for a 'do' statement. For example:do statement while ( expression );- Since:
- 9
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreegetCondition()Returns the condition expression of this do-while statement.StatementTreegetStatement()The statement contained within this do-while statement.- 
Methods inherited from interface jdk.nashorn.api.tree.Treeaccept, getEndPosition, getKind, getStartPosition
 
- 
 
- 
- 
- 
Method Detail- 
getConditionExpressionTree getCondition() Returns the condition expression of this do-while statement.- Specified by:
- getConditionin interface- ConditionalLoopTree
- Returns:
- the condition expression
 
 - 
getStatementStatementTree getStatement() The statement contained within this do-while statement.- Specified by:
- getStatementin interface- LoopTree
- Returns:
- the statement
 
 
- 
 
-