All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blinkfox.fenix.specification.predicate.FenixPredicate Maven / Gradle / Ivy

Go to download

This is an extension library to the Spring Data JPA complex or dynamic SQL query. 这是一个为了解决复杂动态 SQL (JPQL) 而生的 Spring Data JPA 扩展库,能辅助开发者更方便快捷的书写复杂、动态且易于维护的 SQL,支持 ActiveRecord 模式和多种查询方式。

There is a newer version: 3.0.0
Show newest version
package com.blinkfox.fenix.specification.predicate;

import java.util.List;
import javax.persistence.criteria.Predicate;

/**
 * Fenix 中使用 {@link FenixPredicateBuilder} 构建器来动态构造多个 {@link Predicate} 条件的函数式接口.
 *
 * @author blinkfox on 2020-01-21.
 * @since v2.2.0
 */
@FunctionalInterface
public interface FenixPredicate {

    /**
     * 基于 {@link FenixPredicateBuilder} 对象来动态构造多个 {@link Predicate} 条件的接口方法.
     *
     * @param fenixPredicateBuilder {@link FenixPredicateBuilder} 对象
     * @return {@link Predicate} 集合
     */
    List toPredicate(FenixPredicateBuilder fenixPredicateBuilder);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy