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

com.github.mhewedy.expressions.ExpressionsRepository Maven / Gradle / Ivy

package com.github.mhewedy.expressions;

import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.repository.NoRepositoryBean;

import java.util.List;

@NoRepositoryBean
public interface ExpressionsRepository extends JpaRepository {

    List findAll(Expressions expressions);

    List findAll(Expressions expressions, Sort sort);

    Page findAll(Expressions expressions, Pageable pageable);

    long count(Expressions expressions);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy