Interface IfTree

All Superinterfaces:
StatementTree, Tree

public interface IfTree extends StatementTree
A tree node for an if statement. For example:
   if ( condition )
      thenStatement

   if ( condition )
       thenStatement
   else
       elseStatement
 
See Java Language Specification:
14.9 The if Statement
Since:
1.6
  • Nested Class Summary Link icon

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

    Tree.Kind
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Returns the condition of the if-statement.
    Returns the statement to be executed if the condition is false, or null if there is no such statement.
    Returns the statement to be executed if the condition is true

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

    accept, getKind
  • Method Details Link icon

    • getCondition Link icon

      ExpressionTree getCondition()
      Returns the condition of the if-statement.
      Returns:
      the condition
    • getThenStatement Link icon

      StatementTree getThenStatement()
      Returns the statement to be executed if the condition is true
      Returns:
      the statement to be executed if the condition is true
    • getElseStatement Link icon

      StatementTree getElseStatement()
      Returns the statement to be executed if the condition is false, or null if there is no such statement.
      Returns:
      the statement to be executed if the condition is false