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

com.github.wenhao.jpa.Specifications Maven / Gradle / Ivy

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