- All Superinterfaces:
ExpressionTree
,Tree
@Deprecated(forRemoval=true, since="12") public interface SwitchExpressionTree extends ExpressionTree
Deprecated, for removal: This API element is subject to removal in a future version.
This method is modeling switch expressions,
which are part of a preview feature and may be removed
if the preview feature is removed.
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 Type Method Description List<? extends CaseTree>
getCases()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the cases for theswitch
expression.ExpressionTree
getExpression()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the expression for theswitch
expression.
-
Method Details
-
getExpression
ExpressionTree getExpression()Deprecated, for removal: This API element is subject to removal in a future version.Returns the expression for theswitch
expression.- Returns:
- the expression
-
getCases
Deprecated, for removal: This API element is subject to removal in a future version.Returns the cases for theswitch
expression.- Returns:
- the cases
-