WritingToneRepository

@Repository
interface WritingToneRepository : JpaRepository<WritingTone, Long>

Functions

Link copied to clipboard
abstract fun count(): Long
abstract fun <S : WritingTone> count(example: Example<S>): Long
Link copied to clipboard
abstract fun delete(entity: WritingTone)
Link copied to clipboard
abstract fun deleteAll()
abstract fun deleteAll(entities: MutableIterable<WritingTone>)
Link copied to clipboard
abstract fun deleteAllById(ids: MutableIterable<Long>)
Link copied to clipboard
Link copied to clipboard
abstract fun deleteAllInBatch()
Link copied to clipboard
abstract fun deleteById(id: Long)
Link copied to clipboard
Link copied to clipboard
abstract fun <S : WritingTone> exists(example: Example<S>): Boolean
Link copied to clipboard
abstract fun existsById(id: Long): Boolean
Link copied to clipboard
abstract override fun <S : WritingTone> findAll(example: Example<S>): MutableList<S>
abstract override fun <S : WritingTone> findAll(example: Example<S>, sort: Sort): MutableList<S>
abstract override fun findAll(): MutableList<WritingTone>
abstract override fun findAll(sort: Sort): MutableList<WritingTone>
abstract fun findAll(pageable: Pageable): Page<WritingTone>
abstract fun <S : WritingTone> findAll(example: Example<S>, pageable: Pageable): Page<S>
Link copied to clipboard
abstract override fun findAllById(ids: MutableIterable<Long>): MutableList<WritingTone>
Link copied to clipboard
abstract fun <S : WritingTone, R : Any> findBy(example: Example<S>, queryFunction: Function<FluentQuery.FetchableFluentQuery<S>, R>): R
Link copied to clipboard
abstract fun findById(id: Long): Optional<WritingTone>
Link copied to clipboard
abstract fun findByUserId(userId: Long, pageable: Pageable): Page<WritingTone>

사용자 ID로 연설문 조회

Link copied to clipboard
abstract fun <S : WritingTone> findOne(example: Example<S>): Optional<S>
Link copied to clipboard
abstract fun flush()
Link copied to clipboard
abstract fun getById(id: Long): WritingTone
Link copied to clipboard
abstract fun getOne(id: Long): WritingTone
Link copied to clipboard
abstract fun getReferenceById(id: Long): WritingTone
Link copied to clipboard
abstract fun <S : WritingTone> save(entity: S): S
Link copied to clipboard
abstract override fun <S : WritingTone> saveAll(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : WritingTone> saveAllAndFlush(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : WritingTone> saveAndFlush(entity: S): S