org.aoju.bus.mapper.criteria.Weekend Maven / Gradle / Ivy
/*********************************************************************************
* *
* The MIT License (MIT) *
* *
* Copyright (c) 2015-2022 aoju.org mybatis.io and other contributors. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to deal *
* in the Software without restriction, including without limitation the rights *
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN *
* THE SOFTWARE. *
* *
********************************************************************************/
package org.aoju.bus.mapper.criteria;
import org.aoju.bus.core.lang.function.Fn;
import org.aoju.bus.mapper.entity.Condition;
import org.aoju.bus.mapper.reflect.Reflector;
import java.util.stream.Stream;
/**
* @author Kimi Liu
* @since Java 17+
*/
public class Weekend extends Condition {
public Weekend(Class entityClass) {
super(entityClass);
}
public Weekend(Class entityClass, boolean exists) {
super(entityClass, exists);
}
public Weekend(Class entityClass, boolean exists, boolean notNull) {
super(entityClass, exists, notNull);
}
public static Weekend of(Class clazz, Boolean exists, boolean notNull) {
return new Weekend(clazz, exists, notNull);
}
public static Weekend of(Class clazz, Boolean exists) {
return new Weekend(clazz, exists, Boolean.FALSE);
}
public static Weekend of(Class clazz) {
return new Weekend<>(clazz, Boolean.TRUE);
}
public WeekendCriteria createCriteriaAddOn() {
WeekendCriteria weekendCriteria = new WeekendCriteria<>(this.propertyMap, this.exists, this.notNull);
return weekendCriteria;
}
@Override
protected Criteria createCriteriaInternal() {
return this.createCriteriaAddOn();
}
public WeekendCriteria weekendCriteria() {
return (WeekendCriteria) this.createCriteria();
}
/**
* 排除查询字段,优先级低于 selectProperties
*
* @param fns 属性名的可变参数
* @return the object
*/
public Weekend excludeProperties(Fn... fns) {
String[] properties = Stream.of(fns).map(Reflector::fnToFieldName).toArray(String[]::new);
this.excludeProperties(properties);
return this;
}
/**
* 指定要查询的属性列 - 这里会自动映射到表字段
*
* @param fns 函数
* @return the object
*/
public Weekend selectProperties(Fn... fns) {
String[] properties = Stream.of(fns).map(Reflector::fnToFieldName).toArray(String[]::new);
this.selectProperties(properties);
return this;
}
public OrderBy orderBy(Fn fn) {
return this.orderBy(Reflector.fnToFieldName(fn));
}
public Weekend withDistinct(boolean distinct) {
this.setDistinct(distinct);
return this;
}
public Weekend withForUpdate(boolean forUpdate) {
this.setForUpdate(forUpdate);
return this;
}
public Weekend withCountProperty(Fn fn) {
this.setCountProperty(Reflector.fnToFieldName(fn));
return this;
}
public Weekend withTableName(String tableName) {
this.setTableName(tableName);
return this;
}
}