- All Superinterfaces:
Tree
A tree node for a 'case' in a 'switch' statement.
For example:
case expression : statements default : statements
- Since:
- 9
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionCase expression of this 'case' statement.List
<? extends StatementTree> Return the list of statements for this 'case'.Methods inherited from interface org.openjdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition
-
Method Details
-
getExpression
ExpressionTree getExpression()Case expression of this 'case' statement.- Returns:
- null if and only if this Case is
default:
-
getStatements
List<? extends StatementTree> getStatements()Return the list of statements for this 'case'.- Returns:
- list of statements for this 'case'
-