Interface TParameterRepository

  • All Superinterfaces:
    org.springframework.data.repository.CrudRepository<TParameter,​java.lang.Long>, org.springframework.data.jpa.repository.JpaRepository<TParameter,​java.lang.Long>, org.springframework.data.repository.PagingAndSortingRepository<TParameter,​java.lang.Long>, org.springframework.data.repository.query.QueryByExampleExecutor<TParameter>, org.springframework.data.repository.Repository<TParameter,​java.lang.Long>

    public interface TParameterRepository
    extends org.springframework.data.jpa.repository.JpaRepository<TParameter,​java.lang.Long>
    The database repository that stores the parameters for each detector
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<TParameter> findByTDetector​(TDetector tDetector)
      Finds all the parameters that are linked to the supplied detector
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

        count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
      • Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

        deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
      • Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

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

        count, exists, findAll, findOne
    • Method Detail

      • findByTDetector

        java.util.List<TParameter> findByTDetector​(TDetector tDetector)
        Finds all the parameters that are linked to the supplied detector
        Parameters:
        tDetector - the detector to filter by
        Returns:
        the list of parameters