Interface EntityGraphQueryByExampleExecutor<T>

All Superinterfaces:
org.springframework.data.repository.query.QueryByExampleExecutor<T>
All Known Subinterfaces:
EntityGraphJpaRepository<T,ID>
All Known Implementing Classes:
EntityGraphQuerydslRepository, EntityGraphSimpleJpaRepository

@NoRepositoryBean public interface EntityGraphQueryByExampleExecutor<T> extends org.springframework.data.repository.query.QueryByExampleExecutor<T>
Created on 18/03/17.
Author:
Reda.Housni-Alaoui
  • Method Summary

    Modifier and Type
    Method
    Description
    <S extends T>
    List<S>
    findAll(org.springframework.data.domain.Example<S> example, EntityGraph entityGraph)
     
    <S extends T>
    org.springframework.data.domain.Page<S>
    findAll(org.springframework.data.domain.Example<S> example, org.springframework.data.domain.Pageable pageable, EntityGraph entityGraph)
     
    <S extends T>
    List<S>
    findAll(org.springframework.data.domain.Example<S> example, org.springframework.data.domain.Sort sort, EntityGraph entityGraph)
     
    <S extends T>
    Optional<S>
    findOne(org.springframework.data.domain.Example<S> example, EntityGraph entityGraph)
     

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findAll, findAll, findBy, findOne
  • Method Details

    • findAll

      <S extends T> org.springframework.data.domain.Page<S> findAll(org.springframework.data.domain.Example<S> example, org.springframework.data.domain.Pageable pageable, EntityGraph entityGraph)
      See Also:
      • QueryByExampleExecutor.findAll(Example, Pageable)
    • findOne

      <S extends T> Optional<S> findOne(org.springframework.data.domain.Example<S> example, EntityGraph entityGraph)
      See Also:
      • QueryByExampleExecutor.findOne(Example)
    • findAll

      <S extends T> List<S> findAll(org.springframework.data.domain.Example<S> example, org.springframework.data.domain.Sort sort, EntityGraph entityGraph)
      See Also:
      • QueryByExampleExecutor.findAll(Example, Sort)
    • findAll

      <S extends T> List<S> findAll(org.springframework.data.domain.Example<S> example, EntityGraph entityGraph)
      See Also:
      • QueryByExampleExecutor.findAll(Example)