
org.mybatis.dynamic.sql.select.SelectModel Maven / Gradle / Ivy
/*
* Copyright ${license.git.copyrightYears} the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.mybatis.dynamic.sql.select;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.Function;
import java.util.stream.Stream;
import org.jetbrains.annotations.NotNull;
import org.mybatis.dynamic.sql.render.RenderingStrategy;
import org.mybatis.dynamic.sql.select.render.SelectRenderer;
import org.mybatis.dynamic.sql.select.render.SelectStatementProvider;
public class SelectModel {
private final List queryExpressions;
private final OrderByModel orderByModel;
private final PagingModel pagingModel;
private SelectModel(Builder builder) {
queryExpressions = Objects.requireNonNull(builder.queryExpressions);
orderByModel = builder.orderByModel;
pagingModel = builder.pagingModel;
}
public Stream mapQueryExpressions(Function mapper) {
return queryExpressions.stream().map(mapper);
}
public Optional orderByModel() {
return Optional.ofNullable(orderByModel);
}
public Optional pagingModel() {
return Optional.ofNullable(pagingModel);
}
@NotNull
public SelectStatementProvider render(RenderingStrategy renderingStrategy) {
return SelectRenderer.withSelectModel(this)
.withRenderingStrategy(renderingStrategy)
.build()
.render();
}
public static Builder withQueryExpressions(List queryExpressions) {
return new Builder().withQueryExpressions(queryExpressions);
}
public static class Builder {
private final List queryExpressions = new ArrayList<>();
private OrderByModel orderByModel;
private PagingModel pagingModel;
public Builder withQueryExpression(QueryExpressionModel queryExpression) {
this.queryExpressions.add(queryExpression);
return this;
}
public Builder withQueryExpressions(List queryExpressions) {
this.queryExpressions.addAll(queryExpressions);
return this;
}
public Builder withOrderByModel(OrderByModel orderByModel) {
this.orderByModel = orderByModel;
return this;
}
public Builder withPagingModel(PagingModel pagingModel) {
this.pagingModel = pagingModel;
return this;
}
public SelectModel build() {
return new SelectModel(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy