top.openyuan.jpa.specification.handler.impl.OrLessThanEqualPredicateHandler Maven / Gradle / Ivy
package top.openyuan.jpa.specification.handler.impl;
import top.openyuan.jpa.specification.annotation.OrLessThanEqual;
import top.openyuan.jpa.specification.handler.AbstractPredicateHandler;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.From;
import javax.persistence.criteria.Predicate;
import java.lang.annotation.Annotation;
/**
* 构建“或者小于等于条件”({@code OR field <= 'xxx'})场景的 {@link Predicate} 处理器.
*
* @author lzy
* @since v1.0.0
*/
public class OrLessThanEqualPredicateHandler extends AbstractPredicateHandler {
@Override
public Class getAnnotation() {
return OrLessThanEqual.class;
}
@Override
public Predicate buildPredicate(
CriteriaBuilder criteriaBuilder, From from, String fieldName, Object value, Annotation annotation) {
return criteriaBuilder.or(super.buildLessThanEqualPredicate(criteriaBuilder, from, fieldName, value));
}
}