Interface WaveformPickRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<WaveformPick,Long>, DetachableJpaRepository<WaveformPick,Long>, org.springframework.data.jpa.repository.JpaRepository<WaveformPick,Long>, org.springframework.data.repository.ListCrudRepository<WaveformPick,Long>, org.springframework.data.repository.ListPagingAndSortingRepository<WaveformPick,Long>, org.springframework.data.repository.PagingAndSortingRepository<WaveformPick,Long>, org.springframework.data.repository.query.QueryByExampleExecutor<WaveformPick>, org.springframework.data.repository.Repository<WaveformPick,Long>

@Transactional public interface WaveformPickRepository extends DetachableJpaRepository<WaveformPick,Long>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface gov.llnl.gnem.apps.coda.common.repository.DetachableJpaRepository

    findOneDetached

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

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

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

    • findOneByPickTypeAndWaveform

      WaveformPick findOneByPickTypeAndWaveform(String pickType, Waveform waveform)
    • deleteAllByPickType

      @Modifying @Query("delete from WaveformPick wpick where wpick.pickType = :type") void deleteAllByPickType(@Param("type") String type)