Interface SwitchTree

All Superinterfaces:
StatementTree, Tree

public interface SwitchTree extends StatementTree
A tree node for a 'switch' statement. For example:
  switch ( expression ) {
    cases
  }
Since:
9
  • Method Details

    • getExpression

      ExpressionTree getExpression()
      Returns the expression on which this statement switches.
      Returns:
      the switch expression
    • getCases

      List<? extends CaseTree> getCases()
      Returns the list of 'case' statements.
      Returns:
      the 'case' statements