软件包  jdk.nashorn.api.tree

Interface TryTree

  • All Superinterfaces:
    StatementTree


    public interface TryTree
    extends StatementTree
    “try”语句的树结点。 例如:
      try
           block
       catches
       finally
           finallyBlock 
    从以下版本开始:
    9
    • 方法详细信息

      • getBlock

        BlockTree getBlock​()
        返回'try'语句的'try'块。
        结果
        “尝试”块
      • getCatches

        List<? extends CatchTree> getCatches​()
        返回与'try'关联的'catch'语句的列表。
        结果
        与'try'相关联的'catch'语句的列表。
      • getFinallyBlock

        BlockTree getFinallyBlock​()
        返回与'try'关联的'finally'块。 如果没有与此'try'关联的'finally'块,则为null。
        结果
        与'try'相关联的'finally'块。