Module  jdk.compiler
软件包  com.sun.source.tree

Interface CatchTree

  • All Superinterfaces:


    public interface CatchTree
    extends 
    一个catch块的树节点在try语句中。 例如:
      catch ( parameter )
           block 
    从以下版本开始:
    1.6
    See The Java™ Language Specification:
    第14.20节
    • 方法详细信息

      • getParameter

        VariableTree getParameter​()
        返回catch变量。 一个多catch变量将有一个UnionTypeTree作为变量的类型。
        结果
        catch变量
      • getBlock

        BlockTree getBlock​()
        返回catch块。
        结果
        抓块