-
- All Superinterfaces:
-
ConditionalLoopTree
,LoopTree
,StatementTree
,树
public interface WhileLoopTree extends ConditionalLoopTree
循环语句的“while”树结点。 例如:while ( condition ) statement
- 从以下版本开始:
- 9
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 ExpressionTree
getCondition()
这个'while'语句的条件表达式。StatementTree
getStatement()
该声明中包含的声明。-
Methods inherited from interface jdk.nashorn.api.tree.树
accept, getEndPosition, getKind, getStartPosition
-
-
-
-
方法详细信息
-
getCondition
ExpressionTree getCondition()
这个'while'语句的条件表达式。- Specified by:
-
getCondition
接口ConditionalLoopTree
- 结果
- 条件表达式
-
getStatement
StatementTree getStatement()
该声明中包含的声明。- Specified by:
-
getStatement
接口LoopTree
- 结果
- 该声明包含
-
-