Interface DoWhileLoopTree

All Superinterfaces:
StatementTree, Tree
public interface DoWhileLoopTree
extends StatementTree

A tree node for a do statement. For example:

do
       statement
   while ( expression );

Since:
1.6

Nested Classes

Nested classes/interfaces declared in interface com.sun.source.tree.Tree

Tree.Kind

Methods

Modifier and Type Method Description
ExpressionTree getCondition()

Returns the condition of the loop.

StatementTree getStatement()

Returns the body of the loop.

Methods declared in interface com.sun.source.tree.Tree

accept, getKind

Methods

getCondition

ExpressionTree getCondition()

Returns the condition of the loop.

Returns:
the condition

getStatement

StatementTree getStatement()

Returns the body of the loop.

Returns:
the body of the loop