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.
Copyright © 2005, 2016, Oracle and/or its affiliates. All rights reserved.
DRAFT 9-Ubuntu+0-9b144-1ubuntu1