Class BinaryExpressionTreeImpl
- java.lang.Object
-
- org.sonar.iac.terraform.tree.impl.TerraformTreeImpl
-
- org.sonar.iac.terraform.tree.impl.BinaryExpressionTreeImpl
-
- All Implemented Interfaces:
HasTextRange,Tree,BinaryExpressionTree,ExpressionTree,TerraformTree
public class BinaryExpressionTreeImpl extends TerraformTreeImpl implements BinaryExpressionTree
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.sonar.iac.terraform.api.tree.TerraformTree
TerraformTree.Kind
-
-
Field Summary
-
Fields inherited from class org.sonar.iac.terraform.tree.impl.TerraformTreeImpl
textRange
-
-
Constructor Summary
Constructors Constructor Description BinaryExpressionTreeImpl(ExpressionTree leftOperand, SyntaxToken operator, ExpressionTree rightOperand)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Tree>children()TerraformTree.KindgetKind()ExpressionTreeleftOperand()SyntaxTokenoperator()ExpressionTreerightOperand()-
Methods inherited from class org.sonar.iac.terraform.tree.impl.TerraformTreeImpl
is, textRange
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sonar.iac.common.api.tree.HasTextRange
textRange
-
Methods inherited from interface org.sonar.iac.terraform.api.tree.TerraformTree
is
-
-
-
-
Constructor Detail
-
BinaryExpressionTreeImpl
public BinaryExpressionTreeImpl(ExpressionTree leftOperand, SyntaxToken operator, ExpressionTree rightOperand)
-
-
Method Detail
-
leftOperand
public ExpressionTree leftOperand()
- Specified by:
leftOperandin interfaceBinaryExpressionTree
-
operator
public SyntaxToken operator()
- Specified by:
operatorin interfaceBinaryExpressionTree
-
rightOperand
public ExpressionTree rightOperand()
- Specified by:
rightOperandin interfaceBinaryExpressionTree
-
getKind
public TerraformTree.Kind getKind()
- Specified by:
getKindin interfaceTerraformTree
-
-