-
- All Superinterfaces:
StatementTree
,Tree
public interface SwitchTree extends StatementTree
A tree node for a 'switch' statement. For example:switch ( expression ) { cases }
- Since:
- 9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends CaseTree>
getCases()
Returns the list of 'case' statements.ExpressionTree
getExpression()
Returns the expression on which this statement switches.-
Methods declared in interface jdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition
-
-
-
-
Method Detail
-
getExpression
ExpressionTree getExpression()
Returns the expression on which this statement switches.- Returns:
- the switch expression
-
-