com.github.mikesafonov.specification.builder.starter.predicates.PredicateBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-specification-builder Show documentation
Show all versions of spring-boot-starter-specification-builder Show documentation
Spring Boot starter for building specifications in declarative way
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