Class JsonOperator
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.BinaryExpression
-
- net.sf.jsqlparser.expression.operators.relational.JsonOperator
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class JsonOperator extends BinaryExpression
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
op
-
Constructor Summary
Constructors Constructor Description JsonOperator(java.lang.String op)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ExpressionVisitor expressionVisitor)
java.lang.String
getStringExpression()
JsonOperator
withLeftExpression(Expression arg0)
JsonOperator
withRightExpression(Expression arg0)
-
Methods inherited from class net.sf.jsqlparser.expression.BinaryExpression
getLeftExpression, getLeftExpression, getRightExpression, getRightExpression, setLeftExpression, setRightExpression, toString
-
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
appendTo, getASTNode, setASTNode
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sf.jsqlparser.parser.ASTNodeAccess
getASTNode, setASTNode
-
-
-
-
Method Detail
-
accept
public void accept(ExpressionVisitor expressionVisitor)
-
getStringExpression
public java.lang.String getStringExpression()
- Specified by:
getStringExpression
in classBinaryExpression
-
withLeftExpression
public JsonOperator withLeftExpression(Expression arg0)
- Overrides:
withLeftExpression
in classBinaryExpression
-
withRightExpression
public JsonOperator withRightExpression(Expression arg0)
- Overrides:
withRightExpression
in classBinaryExpression
-
-