Interface ForLoopTree
- All Superinterfaces:
-
StatementTree
,Tree
public interface ForLoopTree extends StatementTree
A tree node for a basic for
loop statement. For example:
for ( initializer ; condition ; update ) statement
- 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 |
List<? extends StatementTree> | getInitializer() | Returns any initializers of the |
StatementTree | getStatement() | Returns the body of the |
List<? extends ExpressionStatementTree> | getUpdate() | Returns any update expressions of the |
Methods declared in interface com.sun.source.tree.Tree
accept, getKind
Methods
getInitializer
List<? extends StatementTree> getInitializer()
Returns any initializers of the for
statement. The result will be an empty list if there are no initializers
- Returns:
- the initializers
getCondition
ExpressionTree getCondition()
Returns the condition of the for
statement. May be null
if there is no condition.
- Returns:
- the condition
getUpdate
List<? extends ExpressionStatementTree> getUpdate()
Returns any update expressions of the for
statement.
- Returns:
- the update expressions
getStatement
StatementTree getStatement()
Returns the body of the for
statement.
- Returns:
- the body
© 1993, 2020, 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/11/docs/api/jdk.compiler/com/sun/source/tree/ForLoopTree.html