Class SimilarToExpression
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.BinaryExpression
-
- net.sf.jsqlparser.expression.operators.relational.SimilarToExpression
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class SimilarToExpression extends BinaryExpression
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SimilarToExpression()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ExpressionVisitor expressionVisitor)
java.lang.String
getEscape()
java.lang.String
getStringExpression()
boolean
isNot()
void
setEscape(java.lang.String escape)
void
setNot(boolean b)
java.lang.String
toString()
SimilarToExpression
withEscape(java.lang.String escape)
SimilarToExpression
withLeftExpression(Expression arg0)
SimilarToExpression
withNot(boolean not)
SimilarToExpression
withRightExpression(Expression arg0)
-
Methods inherited from class net.sf.jsqlparser.expression.BinaryExpression
getLeftExpression, getLeftExpression, getRightExpression, getRightExpression, setLeftExpression, setRightExpression
-
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
-
-
-
-
Method Detail
-
isNot
public boolean isNot()
-
setNot
public void setNot(boolean b)
-
accept
public void accept(ExpressionVisitor expressionVisitor)
-
getStringExpression
public java.lang.String getStringExpression()
- Specified by:
getStringExpression
in classBinaryExpression
-
toString
public java.lang.String toString()
- Overrides:
toString
in classBinaryExpression
-
getEscape
public java.lang.String getEscape()
-
setEscape
public void setEscape(java.lang.String escape)
-
withEscape
public SimilarToExpression withEscape(java.lang.String escape)
-
withNot
public SimilarToExpression withNot(boolean not)
-
withLeftExpression
public SimilarToExpression withLeftExpression(Expression arg0)
- Overrides:
withLeftExpression
in classBinaryExpression
-
withRightExpression
public SimilarToExpression withRightExpression(Expression arg0)
- Overrides:
withRightExpression
in classBinaryExpression
-
-