Package io.trino.sql.jsonpath.tree
Class ArithmeticUnary
- java.lang.Object
-
- io.trino.sql.jsonpath.tree.PathNode
-
- io.trino.sql.jsonpath.tree.ArithmeticUnary
-
public class ArithmeticUnary extends PathNode
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classArithmeticUnary.Sign
-
Constructor Summary
Constructors Constructor Description ArithmeticUnary(ArithmeticUnary.Sign sign, PathNode base)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(JsonPathTreeVisitor<R,C> visitor, C context)PathNodegetBase()ArithmeticUnary.SigngetSign()
-
-
-
Constructor Detail
-
ArithmeticUnary
public ArithmeticUnary(ArithmeticUnary.Sign sign, PathNode base)
-
-
Method Detail
-
accept
public <R,C> R accept(JsonPathTreeVisitor<R,C> visitor, C context)
-
getSign
public ArithmeticUnary.Sign getSign()
-
getBase
public PathNode getBase()
-
-