Class ExistsExpression
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.operators.relational.ExistsExpression
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class ExistsExpression extends ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
not
protected Expression
rightExpression
-
Constructor Summary
Constructors Constructor Description ExistsExpression()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ExpressionVisitor expressionVisitor)
Expression
getRightExpression()
<E extends Expression>
EgetRightExpression(java.lang.Class<E> type)
java.lang.String
getStringExpression()
boolean
isNot()
void
setNot(boolean b)
void
setRightExpression(Expression expression)
java.lang.String
toString()
ExistsExpression
withNot(boolean not)
ExistsExpression
withRightExpression(Expression rightExpression)
-
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
-
-
-
-
Field Detail
-
rightExpression
protected Expression rightExpression
-
not
protected boolean not
-
-
Method Detail
-
getRightExpression
public Expression getRightExpression()
-
setRightExpression
public void setRightExpression(Expression expression)
-
isNot
public boolean isNot()
-
setNot
public void setNot(boolean b)
-
accept
public void accept(ExpressionVisitor expressionVisitor)
- Specified by:
accept
in interfaceExpression
-
getStringExpression
public java.lang.String getStringExpression()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
withRightExpression
public ExistsExpression withRightExpression(Expression rightExpression)
-
withNot
public ExistsExpression withNot(boolean not)
-
getRightExpression
public <E extends Expression> E getRightExpression(java.lang.Class<E> type)
-
-