- 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 theswitch
expression.Returns the expression for theswitch
expression.
-
Method Details
-
getExpression
ExpressionTree getExpression()Returns the expression for theswitch
expression.- Returns:
- the expression
-
getCases
Returns the cases for theswitch
expression.- Returns:
- the cases
-