Module jdk.compiler

Interface SwitchTree

  • All Superinterfaces:
    StatementTree, Tree

    public interface SwitchTree
    extends StatementTree
    A tree node for a switch statement. For example:
       switch ( expression ) {
         cases
       }
     
    Since:
    1.6
    See The Java™ Language Specification:
    section 14.11
    • Method Detail

      • getExpression

        ExpressionTree getExpression()
        Returns the expression for the switch statement.
        Returns:
        the expression
      • getCases

        List<? extends CaseTree> getCases()
        Returns the cases for the switch statement.
        Returns:
        the cases