Module net.sf.jsqlparser
Class ExcludesExpression
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.operators.relational.ExcludesExpression
-
- All Implemented Interfaces:
Serializable
,Expression
,Model
,net.sf.jsqlparser.parser.ASTNodeAccess
public class ExcludesExpression extends net.sf.jsqlparser.parser.ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
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(Class<E> type)
Expression
getRightExpression()
<E extends Expression>
EgetRightExpression(Class<E> type)
void
setLeftExpression(Expression expression)
void
setRightExpression(Expression rightExpression)
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.expression.Expression
accept
-
-
-
-
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
-
withRightExpression
public ExcludesExpression withRightExpression(Expression rightExpression)
-
getLeftExpression
public <E extends Expression> E getLeftExpression(Class<E> type)
-
getRightExpression
public <E extends Expression> E getRightExpression(Class<E> type)
-
-