Uses of Interface
org.sonar.plugins.java.api.tree.SwitchExpressionTree
-
Packages that use SwitchExpressionTree Package Description org.sonar.java.ast.parser org.sonar.java.model.statement org.sonar.java.resolve org.sonar.plugins.java.api.tree Provides interfaces to represent Java source code as syntax tree. -
-
Uses of SwitchExpressionTree in org.sonar.java.ast.parser
Methods in org.sonar.java.ast.parser that return SwitchExpressionTree Modifier and Type Method Description SwitchExpressionTree
JavaGrammar. SWITCH_EXPRESSION()
SwitchExpressionTree
TreeFactory. switchExpression(InternalSyntaxToken switchToken, InternalSyntaxToken openParenToken, ExpressionTree expression, InternalSyntaxToken closeParenToken, InternalSyntaxToken openBraceToken, com.sonar.sslr.api.typed.Optional<List<CaseGroupTreeImpl>> optionalGroups, InternalSyntaxToken closeBraceToken)
Methods in org.sonar.java.ast.parser with parameters of type SwitchExpressionTree Modifier and Type Method Description SwitchStatementTree
TreeFactory. switchStatement(SwitchExpressionTree switchExpression)
-
Uses of SwitchExpressionTree in org.sonar.java.model.statement
Classes in org.sonar.java.model.statement that implement SwitchExpressionTree Modifier and Type Class Description class
SwitchExpressionTreeImpl
Methods in org.sonar.java.model.statement that return SwitchExpressionTree Modifier and Type Method Description SwitchExpressionTree
SwitchStatementTreeImpl. asSwitchExpression()
Constructors in org.sonar.java.model.statement with parameters of type SwitchExpressionTree Constructor Description SwitchStatementTreeImpl(SwitchExpressionTree switchExpression)
-
Uses of SwitchExpressionTree in org.sonar.java.resolve
Methods in org.sonar.java.resolve with parameters of type SwitchExpressionTree Modifier and Type Method Description void
TypeAndReferenceSolver. visitSwitchExpression(SwitchExpressionTree tree)
-
Uses of SwitchExpressionTree in org.sonar.plugins.java.api.tree
Methods in org.sonar.plugins.java.api.tree that return SwitchExpressionTree Modifier and Type Method Description SwitchExpressionTree
SwitchStatementTree. asSwitchExpression()
Consider the statement as a Switch expressionMethods in org.sonar.plugins.java.api.tree with parameters of type SwitchExpressionTree Modifier and Type Method Description void
BaseTreeVisitor. visitSwitchExpression(SwitchExpressionTree tree)
void
TreeVisitor. visitSwitchExpression(SwitchExpressionTree tree)
-