Interface BreakTree

  • All Superinterfaces:
    GotoTree, StatementTree, Tree


    public interface BreakTree
    extends GotoTree
    A tree node for a 'break' statement. For example:
       break;
    
       break label ;
     
    Since:
    9
    • Method Detail

      • getLabel

        String getLabel​()
        Label associated with this break statement. This is null if there is no label associated with this break statement.
        Specified by:
        getLabel in interface GotoTree
        Returns:
        label associated with this break statement.