Module jdk.compiler

Interface CatchTree

所有超级接口:
Tree

public interface CatchTree extends Tree
try语句中catch块的树节点。例如:
   catch ( 参数 )
       
 
参见 Java 语言规范:
14.20 try 语句
自版本:
1.6
  • Nested Class Summary

    Nested classes/interfaces declared in interface com.sun.source.tree.Tree

    Tree.Kind
  • Method Summary

    Modifier and Type
    Method
    Description
    返回catch块。
    返回catch变量。

    Methods declared in interface com.sun.source.tree.Tree

    accept, getKind
  • Method Details

    • getParameter

      VariableTree getParameter()
      返回catch变量。多重捕获变量将具有UnionTypeTree作为变量的类型。
      返回:
      catch变量
    • getBlock

      BlockTree getBlock()
      返回catch块。
      返回:
      catch块