Module net.sf.jsqlparser
Class ExcludesExpression
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.operators.relational.ExcludesExpression
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class ExcludesExpression extends ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private Expression
leftExpression
private Expression
rightExpression
-
Constructor Summary
Constructors Constructor Description ExcludesExpression()
ExcludesExpression(Expression leftExpression, Expression rightExpression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(ExpressionVisitor<T> expressionVisitor, S context)
Expression
getLeftExpression()
<E extends Expression>
EgetLeftExpression(java.lang.Class<E> type)
Expression
getRightExpression()
<E extends Expression>
EgetRightExpression(java.lang.Class<E> type)
void
setLeftExpression(Expression expression)
void
setRightExpression(Expression rightExpression)
java.lang.String
toString()
ExcludesExpression
withLeftExpression(Expression expression)
ExcludesExpression
withRightExpression(Expression rightExpression)
-
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
appendTo, getASTNode, getParent, getParent, 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
-
Methods inherited from interface net.sf.jsqlparser.expression.Expression
accept
-
-
-
-
Field Detail
-
leftExpression
private Expression leftExpression
-
rightExpression
private Expression rightExpression
-
-
Constructor Detail
-
ExcludesExpression
public ExcludesExpression()
-
ExcludesExpression
public ExcludesExpression(Expression leftExpression, Expression rightExpression)
-
-
Method Detail
-
getLeftExpression
public Expression getLeftExpression()
-
setLeftExpression
public final void setLeftExpression(Expression expression)
-
withLeftExpression
public ExcludesExpression withLeftExpression(Expression expression)
-
getRightExpression
public Expression getRightExpression()
-
setRightExpression
public void setRightExpression(Expression rightExpression)
-
accept
public <T,S> T accept(ExpressionVisitor<T> expressionVisitor, S context)
- Specified by:
accept
in interfaceExpression
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
withRightExpression
public ExcludesExpression withRightExpression(Expression rightExpression)
-
getLeftExpression
public <E extends Expression> E getLeftExpression(java.lang.Class<E> type)
-
getRightExpression
public <E extends Expression> E getRightExpression(java.lang.Class<E> type)
-
-