Module net.sf.jsqlparser
Class IsUnknownExpression
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.operators.relational.IsUnknownExpression
-
- All Implemented Interfaces:
Serializable
,Expression
,Model
,net.sf.jsqlparser.parser.ASTNodeAccess
public class IsUnknownExpression extends net.sf.jsqlparser.parser.ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IsUnknownExpression()
-
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)
boolean
isNot()
void
setLeftExpression(Expression expression)
void
setNot(boolean isNot)
String
toString()
IsUnknownExpression
withLeftExpression(Expression leftExpression)
IsUnknownExpression
withNot(boolean isNot)
-
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
-
-
-
-
Method Detail
-
getLeftExpression
public Expression getLeftExpression()
-
setLeftExpression
public void setLeftExpression(Expression expression)
-
isNot
public boolean isNot()
-
setNot
public void setNot(boolean isNot)
-
accept
public <T,S> T accept(ExpressionVisitor<T> expressionVisitor, S context)
- Specified by:
accept
in interfaceExpression
-
toString
public String toString()
- Overrides:
toString
in classnet.sf.jsqlparser.parser.ASTNodeAccessImpl
-
withLeftExpression
public IsUnknownExpression withLeftExpression(Expression leftExpression)
-
withNot
public IsUnknownExpression withNot(boolean isNot)
-
getLeftExpression
public <E extends Expression> E getLeftExpression(Class<E> type)
-
-