Module net.sf.jsqlparser
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:
Serializable,Expression,Model,net.sf.jsqlparser.parser.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 <T,S>
Taccept(ExpressionVisitor<T> expressionVisitor, S context)StringgetEscape()StringgetStringExpression()booleanisNot()voidsetEscape(String escape)voidsetNot(boolean b)StringtoString()SimilarToExpressionwithEscape(String escape)SimilarToExpressionwithLeftExpression(Expression arg0)SimilarToExpressionwithNot(boolean not)SimilarToExpressionwithRightExpression(Expression arg0)-
Methods inherited from class net.sf.jsqlparser.expression.BinaryExpression
add, and, bitAnd, bitOr, bitShiftLeft, bitShiftRight, bitXor, build, concat, divide, divideInt, getLeftExpression, getLeftExpression, getRightExpression, getRightExpression, modulo, multiply, or, setLeftExpression, setRightExpression, subtract, xor
-
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
-
isNot
public boolean isNot()
-
setNot
public void setNot(boolean b)
-
accept
public <T,S> T accept(ExpressionVisitor<T> expressionVisitor, S context)
-
getStringExpression
public String getStringExpression()
- Specified by:
getStringExpressionin classBinaryExpression
-
toString
public String toString()
- Overrides:
toStringin classBinaryExpression
-
getEscape
public String getEscape()
-
setEscape
public void setEscape(String escape)
-
withEscape
public SimilarToExpression withEscape(String escape)
-
withNot
public SimilarToExpression withNot(boolean not)
-
withLeftExpression
public SimilarToExpression withLeftExpression(Expression arg0)
- Overrides:
withLeftExpressionin classBinaryExpression
-
withRightExpression
public SimilarToExpression withRightExpression(Expression arg0)
- Overrides:
withRightExpressionin classBinaryExpression
-
-