Package com.alibaba.druid.sql.ast.expr
Class SQLBetweenExpr
- java.lang.Object
-
- com.alibaba.druid.sql.ast.SQLObjectImpl
-
- com.alibaba.druid.sql.ast.SQLExprImpl
-
- com.alibaba.druid.sql.ast.expr.SQLBetweenExpr
-
- All Implemented Interfaces:
SQLExpr,SQLObject,SQLReplaceable,Serializable,Cloneable
public class SQLBetweenExpr extends SQLExprImpl implements SQLReplaceable, Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description SQLExprbeginExprSQLExprendExprSQLExprtestExpr-
Fields inherited from class com.alibaba.druid.sql.ast.SQLExprImpl
parenthesized, parenthesizedCount
-
Fields inherited from class com.alibaba.druid.sql.ast.SQLObjectImpl
attributes, hint, parent, sourceColumn, sourceLine
-
-
Constructor Summary
Constructors Constructor Description SQLBetweenExpr()SQLBetweenExpr(SQLExpr testExpr, boolean not, SQLExpr beginExpr, SQLExpr endExpr)SQLBetweenExpr(SQLExpr testExpr, SQLExpr beginExpr, SQLExpr endExpr)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaccept0(SQLASTVisitor visitor)SQLBetweenExprclone()SQLDataTypecomputeDataType()booleanequals(Object obj)SQLExprgetBeginExpr()List<SQLObject>getChildren()SQLExprgetEndExpr()SQLExprgetTestExpr()inthashCode()booleanisNot()booleanreplace(SQLExpr expr, SQLExpr target)voidsetBeginExpr(SQLExpr beginExpr)voidsetEndExpr(SQLExpr endExpr)voidsetNot(boolean not)voidsetTestExpr(SQLExpr testExpr)-
Methods inherited from class com.alibaba.druid.sql.ast.SQLExprImpl
cloneTo, getParenthesizedCount, increaseParenthesizedCount, isParenthesized, setParenthesized, setParenthesizedCount
-
Methods inherited from class com.alibaba.druid.sql.ast.SQLObjectImpl
accept, acceptChild, acceptChild, addAfterComment, addAfterComment, addBeforeComment, addBeforeComment, cloneTo, containsAttribute, getAfterCommentsDirect, getAttribute, getAttributes, getAttributesDirect, getBeforeCommentsDirect, getHint, getParent, getParent, getSourceColumn, getSourceLine, hasAfterComment, hasBeforeComment, output, putAttribute, setHint, setParent, setSource, setSourceLine, toString
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.alibaba.druid.sql.ast.SQLObject
accept, addAfterComment, addAfterComment, addBeforeComment, addBeforeComment, containsAttribute, getAfterCommentsDirect, getAttribute, getAttributes, getAttributesDirect, getBeforeCommentsDirect, getParent, getParent, getSourceColumn, getSourceLine, hasAfterComment, hasBeforeComment, output, putAttribute, setParent, setSource
-
-
-
-
Method Detail
-
clone
public SQLBetweenExpr clone()
-
accept0
protected void accept0(SQLASTVisitor visitor)
- Specified by:
accept0in classSQLObjectImpl
-
getChildren
public List<SQLObject> getChildren()
- Specified by:
getChildrenin interfaceSQLExpr- Overrides:
getChildrenin classSQLExprImpl
-
getTestExpr
public SQLExpr getTestExpr()
-
setTestExpr
public void setTestExpr(SQLExpr testExpr)
-
isNot
public boolean isNot()
-
setNot
public void setNot(boolean not)
-
getBeginExpr
public SQLExpr getBeginExpr()
-
setBeginExpr
public void setBeginExpr(SQLExpr beginExpr)
-
getEndExpr
public SQLExpr getEndExpr()
-
setEndExpr
public void setEndExpr(SQLExpr endExpr)
-
hashCode
public int hashCode()
- Specified by:
hashCodein classSQLExprImpl
-
equals
public boolean equals(Object obj)
- Specified by:
equalsin classSQLExprImpl
-
computeDataType
public SQLDataType computeDataType()
- Specified by:
computeDataTypein interfaceSQLExpr- Overrides:
computeDataTypein classSQLExprImpl
-
replace
public boolean replace(SQLExpr expr, SQLExpr target)
- Specified by:
replacein interfaceSQLReplaceable
-
-