Package io.trino.sql.jsonpath.tree
Class ArithmeticBinary
- java.lang.Object
-
- io.trino.sql.jsonpath.tree.PathNode
-
- io.trino.sql.jsonpath.tree.ArithmeticBinary
-
public class ArithmeticBinary extends PathNode
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classArithmeticBinary.Operator
-
Constructor Summary
Constructors Constructor Description ArithmeticBinary(ArithmeticBinary.Operator operator, PathNode left, PathNode right)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(JsonPathTreeVisitor<R,C> visitor, C context)PathNodegetLeft()ArithmeticBinary.OperatorgetOperator()PathNodegetRight()
-
-
-
Constructor Detail
-
ArithmeticBinary
public ArithmeticBinary(ArithmeticBinary.Operator operator, PathNode left, PathNode right)
-
-
Method Detail
-
accept
public <R,C> R accept(JsonPathTreeVisitor<R,C> visitor, C context)
-
getOperator
public ArithmeticBinary.Operator getOperator()
-
getLeft
public PathNode getLeft()
-
getRight
public PathNode getRight()
-
-