StatementTree
, Tree
public interface ForLoopTree extends StatementTree
for
loop statement.
For example:
for ( initializer ; condition ; update ) statement
Modifier and Type | Method | Description |
---|---|---|
ExpressionTree |
getCondition() |
Returns the condition of the
for statement. |
List<? extends StatementTree> |
getInitializer() |
Returns any initializers of the
for statement. |
StatementTree |
getStatement() |
Returns the body of the
for statement. |
List<? extends ExpressionStatementTree> |
getUpdate() |
Returns any update expressions of the
for statement. |
List<? extends StatementTree> getInitializer()
for
statement.
The result will be an empty list if there are
no initializersExpressionTree getCondition()
for
statement.
May be null
if there is no condition.List<? extends ExpressionStatementTree> getUpdate()
for
statement.StatementTree getStatement()
for
statement. Submit a bug or feature
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 2005, 2017, Oracle and/or its affiliates. 500 Oracle Parkway
Redwood Shores, CA 94065 USA. All rights reserved.
DRAFT 9-Debian+0-9b155-1