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 protected
AbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description <R> R
accept(ConditionVisitor<T,R> visitor)
abstract java.lang.String
renderCondition(java.lang.String columnName, java.lang.String renderedSelectStatement)
SelectModel
selectModel()
-
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:
accept
in interfaceVisitableCondition<T>
-
renderCondition
public abstract java.lang.String renderCondition(java.lang.String columnName, java.lang.String renderedSelectStatement)
-
-