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
Method Summary
Modifier and Type | Method | Description |
---|---|---|
ExpressionTree |
getCondition() |
Returns the condition of the if-statement. |
StatementTree |
getElseStatement() |
Returns the statement to be executed if the condition is false, or null if there is no such statement. |
StatementTree |
getThenStatement() |
Returns the statement to be executed if the condition is true |
Method Details
getCondition
ExpressionTree getCondition()
Returns the condition of the if-statement.
- Returns:
- the condition
getThenStatement
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
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
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/jdk.compiler/com/sun/source/tree/IfTree.html