-
- All Superinterfaces:
-
StatementTree
,树
public interface TryTree extends StatementTree
try
语句的树节点。 例如:try block catches finally finallyBlock
- 从以下版本开始:
- 1.6
- See The Java™ Language Specification:
- 第14.20节
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 BlockTree
getBlock()
返回try
语句的块。List<? extends CatchTree>
getCatches()
返回try
语句中提供的任何catch块。BlockTree
getFinallyBlock()
返回try
语句中提供的finally块,如果没有,则返回null
。List<? extends 树>
getResources()
返回try
语句中提供的任何资源声明。
-