-
- All Superinterfaces:
-
LoopTree
,StatementTree
,树
- All Known Subinterfaces:
-
DoWhileLoopTree
,ForLoopTree
,WhileLoopTree
public interface ConditionalLoopTree extends LoopTree
一个混合条件的“循环”语句。- 从以下版本开始:
- 9
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 ExpressionTree
getCondition()
返回此“循环”语句的条件表达式。-
Methods inherited from interface jdk.nashorn.api.tree.LoopTree
getStatement
-
Methods inherited from interface jdk.nashorn.api.tree.树
accept, getEndPosition, getKind, getStartPosition
-
-
-
-
方法详细信息
-
getCondition
ExpressionTree getCondition()
返回此“循环”语句的条件表达式。- 结果
- the condition expression
-
-