
com.github.wenhao.jpa.Specifications Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa-spec Show documentation
Show all versions of jpa-spec Show documentation
A JAP Query By Specification framework.
The newest version!
package com.github.wenhao.jpa;
import static javax.persistence.criteria.Predicate.BooleanOperator.AND;
import static javax.persistence.criteria.Predicate.BooleanOperator.OR;
public class Specifications {
public static PredicateBuilder and() {
return new PredicateBuilder<>(AND);
}
public static PredicateBuilder or() {
return new PredicateBuilder<>(OR);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy