Interface CaseTree

  • All Superinterfaces:
    Tree


    public interface CaseTree
    extends Tree
    A tree node for a 'case' in a 'switch' statement. For example:
       case expression :
           statements
    
       default :
           statements
     
    Since:
    9
    • Method Detail

      • getExpression

        ExpressionTree getExpression​()
        Case expression of this 'case' statement.
        Returns:
        null if and only if this Case is default:
      • getStatements

        List<? extends StatementTree> getStatements​()
        Return the list of statements for this 'case'.
        Returns:
        list of statements for this 'case'