Interface SequencingInstrumentIlluminaRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
,org.springframework.data.jpa.repository.JpaRepository<SequencingInstrumentIllumina,Long>
,org.springframework.data.repository.PagingAndSortingRepository<SequencingInstrumentIllumina,Long>
,org.springframework.data.repository.query.QueryByExampleExecutor<SequencingInstrumentIllumina>
,org.springframework.data.repository.Repository<SequencingInstrumentIllumina,Long>
@Repository public interface SequencingInstrumentIlluminaRepository extends org.springframework.data.jpa.repository.JpaRepository<SequencingInstrumentIllumina,Long>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
count()
void
delete(SequencingInstrumentIllumina instrument)
void
deleteAll()
void
deleteAll(Iterable<? extends SequencingInstrumentIllumina> instruments)
void
deleteAllById(Iterable<? extends Long> ids)
void
deleteById(Long id)
void
deleteByInstrumentId(String id)
boolean
existsById(Long id)
List<SequencingInstrumentIllumina>
findAll()
List<SequencingInstrumentIllumina>
findAllById(Iterable<Long> ids)
Optional<SequencingInstrumentIllumina>
findById(Long id)
Optional<SequencingInstrumentIllumina>
findByInstrumentId(String instrumentId)
<S extends SequencingInstrumentIllumina>
Ssave(S instrument)
<S extends SequencingInstrumentIllumina>
List<S>saveAll(Iterable<S> instruments)
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
-
-
-
-
Method Detail
-
save
@NonNull <S extends SequencingInstrumentIllumina> S save(@NonNull S instrument)
- Specified by:
save
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
saveAll
@NonNull <S extends SequencingInstrumentIllumina> List<S> saveAll(@NonNull Iterable<S> instruments)
- Specified by:
saveAll
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
- Specified by:
saveAll
in interfaceorg.springframework.data.jpa.repository.JpaRepository<SequencingInstrumentIllumina,Long>
-
findById
@NonNull Optional<SequencingInstrumentIllumina> findById(@NonNull Long id)
- Specified by:
findById
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
findByInstrumentId
Optional<SequencingInstrumentIllumina> findByInstrumentId(@NonNull String instrumentId)
-
existsById
boolean existsById(@NonNull Long id)
- Specified by:
existsById
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
findAll
@NonNull List<SequencingInstrumentIllumina> findAll()
- Specified by:
findAll
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
- Specified by:
findAll
in interfaceorg.springframework.data.jpa.repository.JpaRepository<SequencingInstrumentIllumina,Long>
-
findAllById
@NonNull List<SequencingInstrumentIllumina> findAllById(@NonNull Iterable<Long> ids)
- Specified by:
findAllById
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
- Specified by:
findAllById
in interfaceorg.springframework.data.jpa.repository.JpaRepository<SequencingInstrumentIllumina,Long>
-
count
long count()
- Specified by:
count
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
deleteById
void deleteById(@NonNull Long id)
- Specified by:
deleteById
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
deleteByInstrumentId
void deleteByInstrumentId(@NonNull String id)
-
delete
void delete(@NonNull SequencingInstrumentIllumina instrument)
- Specified by:
delete
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
deleteAllById
void deleteAllById(Iterable<? extends Long> ids)
- Specified by:
deleteAllById
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
deleteAll
void deleteAll(@NonNull Iterable<? extends SequencingInstrumentIllumina> instruments)
- Specified by:
deleteAll
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
deleteAll
void deleteAll()
- Specified by:
deleteAll
in interfaceorg.springframework.data.repository.CrudRepository<SequencingInstrumentIllumina,Long>
-
-