Module jdk.compiler

Interface WhileLoopTree

  • All Superinterfaces:
    StatementTree, Tree

    public interface WhileLoopTree
    extends StatementTree
    A tree node for a while loop statement. For example:
       while ( condition )
         statement
     
    Since:
    1.6
    See The Java™ Language Specification:
    section 14.12
    • Method Detail

      • 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