软件包  jdk.nashorn.api.tree

Interface BreakTree

  • All Superinterfaces:
    GotoTreeStatementTree


    public interface BreakTree
    extends GotoTree
    “休息”语句的树节点。 例如:
      break;
    
       break label ; 
    从以下版本开始:
    9
    • 方法详细信息

      • getLabel

        String getLabel​()
        与此break语句关联的标签。 如果没有与此break语句关联的标签,则为null。
        Specified by:
        getLabel在接口 GotoTree
        结果
        label associated with this break statement.