TagRepository

@Repository
interface TagRepository : JpaRepository<Tag, String> (source)

Functions

Link copied to clipboard
abstract fun count(): Long
abstract fun <S : Tag> count(example: Example<S>): Long
Link copied to clipboard
abstract fun delete(entity: Tag)
Link copied to clipboard
abstract fun deleteAll()
abstract fun deleteAll(entities: MutableIterable<Tag>)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun deleteAllInBatch()
abstract fun deleteAllInBatch(entities: MutableIterable<Tag>)
Link copied to clipboard
abstract fun deleteById(id: String)
Link copied to clipboard
open fun deleteInBatch(entities: MutableIterable<Tag>)
Link copied to clipboard
abstract fun <S : Tag> exists(example: Example<S>): Boolean
Link copied to clipboard
abstract fun existsById(id: String): Boolean
Link copied to clipboard
abstract override fun <S : Tag> findAll(example: Example<S>): MutableList<S>
abstract override fun <S : Tag> findAll(example: Example<S>, sort: Sort): MutableList<S>
abstract override fun findAll(): MutableList<Tag>
abstract override fun findAll(sort: Sort): MutableList<Tag>
abstract fun findAll(pageable: Pageable): Page<Tag>
abstract fun <S : Tag> findAll(example: Example<S>, pageable: Pageable): Page<S>
Link copied to clipboard
abstract override fun findAllById(ids: MutableIterable<String>): MutableList<Tag>
Link copied to clipboard
abstract fun <S : Tag, R : Any> findBy(example: Example<S>, queryFunction: Function<FluentQuery.FetchableFluentQuery<S>, R>): R
Link copied to clipboard
abstract fun findById(id: String): Optional<Tag>
Link copied to clipboard
abstract fun findByTenantId(tenantId: String): List<Tag>
Link copied to clipboard
abstract fun <S : Tag> findOne(example: Example<S>): Optional<S>
Link copied to clipboard
abstract fun flush()
Link copied to clipboard
abstract fun getById(id: String): Tag
Link copied to clipboard
abstract fun getOne(id: String): Tag
Link copied to clipboard
abstract fun getReferenceById(id: String): Tag
Link copied to clipboard
abstract fun <S : Tag> save(entity: S): S
Link copied to clipboard
abstract override fun <S : Tag> saveAll(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : Tag> saveAllAndFlush(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
abstract fun <S : Tag> saveAndFlush(entity: S): S