-
- 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 aswitchexpression. For example:switch ( expression ) { cases }- Since:
- 12
- See The Java™ Language Specification:
- section 15.29
-
-
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 theswitchexpression.ExpressionTreegetExpression()Deprecated, for removal: This API element is subject to removal in a future version.Returns the expression for theswitchexpression.
-
-
-
Method Detail
-
getExpression
ExpressionTree getExpression()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the expression for theswitchexpression.- Returns:
- the expression
-
-