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

com.github.mikesafonov.specification.builder.starter.predicates.PredicateBuilder Maven / Gradle / Ivy

There is a newer version: 1.10.0
Show newest version
package com.github.mikesafonov.specification.builder.starter.predicates;

import org.springframework.lang.NonNull;

import javax.persistence.criteria.Predicate;

/**
 * Extension for building specific {@link Predicate}
 *
 * @author MikeSafonov
 */
public interface PredicateBuilder {

    /**
     * Builds specific {@link Predicate}
     *
     * @return {@link Predicate}
     */
    @NonNull Predicate build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy