- All Superinterfaces:
 ExpressionTree,Tree
A tree node for a 
switch expression.
 For example:
 
   switch ( expression ) {
     cases
   }
 - See Java Language Specification:
 - 
15.29 Switch Expressions
 - Since:
 - 12
 
- 
Nested Class Summary
 - 
Method Summary
Modifier and TypeMethodDescriptiongetCases()Returns the cases for theswitchexpression.Returns the expression for theswitchexpression. 
- 
Method Details
- 
getExpression
ExpressionTree getExpression()Returns the expression for theswitchexpression.- Returns:
 - the expression
 
 - 
getCases
Returns the cases for theswitchexpression.- Returns:
 - the cases
 
 
 -