- All Superinterfaces:
- Tree
A tree node for a 
case in a switch statement or expression.
 For example:
 
   case expression :
       statements
   default :
       statements
 - See Java Language Specification:
- 
14.11 The switch Statement
- Since:
- 1.6
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic enumThe syntactic form of this case: STATEMENT:case <expression>: <statements>RULE:case <expression> -> <expression>/<statement>
- 
Method SummaryModifier and TypeMethodDescriptiondefault TreegetBody()For case with kind CaseTree.CaseKind.RULE, returns the statement or expression after the arrow.default CaseTree.CaseKindReturns the kind of this case.Deprecated.List<? extends ExpressionTree>Returns the labels for this case.List<? extends CaseLabelTreePREVIEW>Preview.Returns the labels for this case.List<? extends StatementTree>For case with kind CaseTree.CaseKind.STATEMENT, returns the statements labeled by the case.
- 
Method Details- 
getExpressionDeprecated.Please usegetExpressions().Returns the expression for the case, ornullif this is the default case. If this case has multiple labels, returns the first label.- Returns:
- the expression for the case, or null
 
- 
getExpressionsList<? extends ExpressionTree> getExpressions()Returns the labels for this case. For default case, returns an empty list.- Returns:
- labels for this case
- Since:
- 12
 
- 
getLabelsList<? extends CaseLabelTreePREVIEW> getLabels()getLabelsis a reflective preview API of the Java platform.Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.Returns the labels for this case. Fordefaultcase return a list with a single element,DefaultCaseLabelTreePREVIEW.- Returns:
- labels for this case
- Since:
- 17
 
- 
getStatementsList<? extends StatementTree> getStatements()For case with kind CaseTree.CaseKind.STATEMENT, returns the statements labeled by the case. Returnsnullfor case with kind CaseTree.CaseKind.RULE.- Returns:
- the statements labeled by the case or null
 
- 
getBodyFor case with kind CaseTree.CaseKind.RULE, returns the statement or expression after the arrow. Returnsnullfor case with kind CaseTree.CaseKind.STATEMENT.- Returns:
- case value or null
- Since:
- 12
 
- 
getCaseKindReturns the kind of this case.- Returns:
- the kind of this case
- Since:
- 12
 
 
- 
getExpressions().