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

com.alon.spring.crud.repository.specification.predicate.EndsWithPredicateBuilder Maven / Gradle / Ivy

Go to download

Projeto base para criação de serviços e recusos de CRUD com Spring Data JPA.

There is a newer version: 3.0.0
Show newest version
package com.alon.spring.crud.repository.specification.predicate;

import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.Path;
import javax.persistence.criteria.Predicate;

public class EndsWithPredicateBuilder implements PredicateBuilder {

    private static PredicateBuilder INSTANCE;

    @Override
    public Predicate build(CriteriaBuilder criteriaBuilder, Path path, String value) {

        value = String.format("%%%s", this.convertValue(path, value));

        return criteriaBuilder.like(path, value);

    }

    public static PredicateBuilder getInstance() {

        if (INSTANCE == null)
            INSTANCE = new EndsWithPredicateBuilder();

        return INSTANCE;

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy