Modifier and Type | Method and Description |
---|---|
SelectModel |
AbstractSubselectCondition.selectModel() |
Modifier and Type | Method and Description |
---|---|
static CountDSL<SelectModel> |
SqlBuilder.countFrom(SqlTable table) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SqlBuilder.select(BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SqlBuilder.select(Collection<BasicColumn> selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SqlBuilder.selectDistinct(BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SqlBuilder.selectDistinct(Collection<BasicColumn> selectList) |
Modifier and Type | Method and Description |
---|---|
static <T> IsEqualToWithSubselect<T> |
SqlBuilder.isEqualTo(Buildable<SelectModel> selectModelBuilder) |
static <T> IsGreaterThanWithSubselect<T> |
SqlBuilder.isGreaterThan(Buildable<SelectModel> selectModelBuilder) |
static <T> IsGreaterThanOrEqualToWithSubselect<T> |
SqlBuilder.isGreaterThanOrEqualTo(Buildable<SelectModel> selectModelBuilder) |
static <T> IsInWithSubselect<T> |
SqlBuilder.isIn(Buildable<SelectModel> selectModelBuilder) |
static <T> IsLessThanWithSubselect<T> |
SqlBuilder.isLessThan(Buildable<SelectModel> selectModelBuilder) |
static <T> IsLessThanOrEqualToWithSubselect<T> |
SqlBuilder.isLessThanOrEqualTo(Buildable<SelectModel> selectModelBuilder) |
static <T> IsNotEqualToWithSubselect<T> |
SqlBuilder.isNotEqualTo(Buildable<SelectModel> selectModelBuilder) |
static <T> IsNotInWithSubselect<T> |
SqlBuilder.isNotIn(Buildable<SelectModel> selectModelBuilder) |
Constructor and Description |
---|
AbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder) |
Modifier and Type | Method and Description |
---|---|
SelectModel |
InsertSelectModel.selectModel() |
Modifier and Type | Method and Description |
---|---|
InsertSelectModel.Builder |
InsertSelectModel.Builder.withSelectModel(SelectModel selectModel) |
Modifier and Type | Method and Description |
---|---|
InsertSelectDSL |
InsertSelectDSL.InsertColumnGatherer.withSelectStatement(Buildable<SelectModel> selectModelBuilder) |
InsertSelectDSL |
InsertSelectDSL.SelectGatherer.withSelectStatement(Buildable<SelectModel> selectModelBuilder) |
Modifier and Type | Method and Description |
---|---|
SelectModel |
SelectModel.Builder.build() |
Modifier and Type | Method and Description |
---|---|
static CountDSL<SelectModel> |
CountDSL.countFrom(SqlTable table) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SelectDSL.select(BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SelectDSL.select(Collection<BasicColumn> selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SelectDSL.selectDistinct(BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SelectDSL.selectDistinct(Collection<BasicColumn> selectList) |
Modifier and Type | Method and Description |
---|---|
static <R> MyBatis3SelectModelAdapter<R> |
MyBatis3SelectModelAdapter.of(SelectModel selectModel,
Function<SelectStatementProvider,R> mapperMethod)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static <R> CountDSL<R> |
CountDSL.countFrom(Function<SelectModel,R> adapterFunction,
SqlTable table) |
static <R> QueryExpressionDSL.FromGatherer<R> |
SelectDSL.select(Function<SelectModel,R> adapterFunction,
BasicColumn... selectList) |
static <R> QueryExpressionDSL.FromGatherer<R> |
SelectDSL.select(Function<SelectModel,R> adapterFunction,
Collection<BasicColumn> selectList) |
static <R> QueryExpressionDSL.FromGatherer<R> |
SelectDSL.selectDistinct(Function<SelectModel,R> adapterFunction,
BasicColumn... selectList) |
static <R> QueryExpressionDSL.FromGatherer<R> |
SelectDSL.selectDistinct(Function<SelectModel,R> adapterFunction,
Collection<BasicColumn> selectList) |
Modifier and Type | Method and Description |
---|---|
static SelectRenderer.Builder |
SelectRenderer.withSelectModel(SelectModel selectModel) |
SelectRenderer.Builder |
SelectRenderer.Builder.withSelectModel(SelectModel selectModel) |
Modifier and Type | Method and Description |
---|---|
UpdateDSL<R> |
UpdateDSL.SetClauseFinisher.equalTo(Buildable<SelectModel> buildable) |
Modifier and Type | Method and Description |
---|---|
SelectModel |
SelectMapping.selectModel() |
Modifier and Type | Method and Description |
---|---|
static SelectMapping |
SelectMapping.of(SqlColumn<?> column,
Buildable<SelectModel> selectModelBuilder) |
Modifier and Type | Method and Description |
---|---|
static SelectStatementProvider |
MyBatis3Utils.countFrom(CountDSL<SelectModel> start,
CountDSLCompleter completer) |
static long |
MyBatis3Utils.countFrom(ToLongFunction<SelectStatementProvider> mapper,
CountDSL<SelectModel> start,
CountDSLCompleter completer) |
static SelectStatementProvider |
MyBatis3Utils.select(QueryExpressionDSL<SelectModel> start,
SelectDSLCompleter completer) |
static <R> List<R> |
MyBatis3Utils.selectList(Function<SelectStatementProvider,List<R>> mapper,
QueryExpressionDSL<SelectModel> start,
SelectDSLCompleter completer) |
static <R> R |
MyBatis3Utils.selectOne(Function<SelectStatementProvider,R> mapper,
QueryExpressionDSL<SelectModel> start,
SelectDSLCompleter completer) |
Constructor and Description |
---|
SpringBatchCursorReaderSelectModel(SelectModel selectModel) |
SpringBatchPagingReaderSelectModel(SelectModel selectModel) |
Modifier and Type | Method and Description |
---|---|
static <T> IsNotInWithSubselect<T> |
IsNotInWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsNotEqualToWithSubselect<T> |
IsNotEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsLessThanWithSubselect<T> |
IsLessThanWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsGreaterThanWithSubselect<T> |
IsGreaterThanWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsGreaterThanOrEqualToWithSubselect<T> |
IsGreaterThanOrEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsEqualToWithSubselect<T> |
IsEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsInWithSubselect<T> |
IsInWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsLessThanOrEqualToWithSubselect<T> |
IsLessThanOrEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
Constructor and Description |
---|
IsEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder) |
IsGreaterThanOrEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder) |
IsGreaterThanWithSubselect(Buildable<SelectModel> selectModelBuilder) |
IsInWithSubselect(Buildable<SelectModel> selectModelBuilder) |
IsLessThanOrEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder) |
IsLessThanWithSubselect(Buildable<SelectModel> selectModelBuilder) |
IsNotEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder) |
IsNotInWithSubselect(Buildable<SelectModel> selectModelBuilder) |
Copyright © 2016–2019 MyBatis.org. All rights reserved.