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