Package org.mybatis.dynamic.sql
Class AbstractSubselectCondition<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.AbstractSubselectCondition<T>
-
- All Implemented Interfaces:
VisitableCondition<T>
- Direct Known Subclasses:
IsEqualToWithSubselect,IsGreaterThanOrEqualToWithSubselect,IsGreaterThanWithSubselect,IsInWithSubselect,IsLessThanOrEqualToWithSubselect,IsLessThanWithSubselect,IsNotEqualToWithSubselect,IsNotInWithSubselect
public abstract class AbstractSubselectCondition<T> extends java.lang.Object implements VisitableCondition<T>
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder)
-
Method Summary
Modifier and Type Method Description <R> Raccept(ConditionVisitor<T,R> visitor)abstract java.lang.StringrenderCondition(java.lang.String columnName, java.lang.String renderedSelectStatement)SelectModelselectModel()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.mybatis.dynamic.sql.VisitableCondition
shouldRender
-
-
-
-
Constructor Detail
-
AbstractSubselectCondition
protected AbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder)
-
-
Method Detail
-
selectModel
public SelectModel selectModel()
-
accept
public <R> R accept(ConditionVisitor<T,R> visitor)
- Specified by:
acceptin interfaceVisitableCondition<T>
-
renderCondition
public abstract java.lang.String renderCondition(java.lang.String columnName, java.lang.String renderedSelectStatement)
-
-