W
- the implementation of the Where DSL customized for a particular SQL statement.public abstract class AbstractWhereSupport<W extends AbstractWhereDSL<?>> extends Object
AbstractWhereDSL
that is customized for a particular DSL, and to add the initiating common "where"
methods.Constructor and Description |
---|
AbstractWhereSupport() |
Modifier and Type | Method and Description |
---|---|
W |
applyWhere(WhereApplier whereApplier) |
abstract W |
where() |
<T> W |
where(BindableColumn<T> column,
VisitableCondition<T> condition,
List<SqlCriterion> subCriteria) |
<T> W |
where(BindableColumn<T> column,
VisitableCondition<T> condition,
SqlCriterion... subCriteria) |
W |
where(ExistsPredicate existsPredicate) |
W |
where(ExistsPredicate existsPredicate,
SqlCriterion... subCriteria) |
public abstract W where()
public <T> W where(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion... subCriteria)
public <T> W where(BindableColumn<T> column, VisitableCondition<T> condition, List<SqlCriterion> subCriteria)
public W where(ExistsPredicate existsPredicate)
public W where(ExistsPredicate existsPredicate, SqlCriterion... subCriteria)
public W applyWhere(WhereApplier whereApplier)
Copyright © 2016–2021 MyBatis.org. All rights reserved.