Class Subtraction
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.BinaryExpression
-
- net.sf.jsqlparser.expression.operators.arithmetic.Subtraction
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class Subtraction extends BinaryExpression
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Subtraction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ExpressionVisitor expressionVisitor)
java.lang.String
getStringExpression()
Subtraction
withLeftExpression(Expression arg0)
Subtraction
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 Subtraction withLeftExpression(Expression arg0)
- Overrides:
withLeftExpression
in classBinaryExpression
-
withRightExpression
public Subtraction withRightExpression(Expression arg0)
- Overrides:
withRightExpression
in classBinaryExpression
-
-