AttributeInstanceRepository

Functions

Link copied to clipboard
abstract fun count(): Long
abstract fun <S : AttributeInstance> count(example: Example<S>): Long
Link copied to clipboard
abstract fun delete(entity: AttributeInstance)
Link copied to clipboard
abstract fun deleteAll()
Link copied to clipboard
abstract fun deleteAllById(ids: MutableIterable<Long>)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun deleteById(id: Long)
Link copied to clipboard
Link copied to clipboard
abstract fun <S : AttributeInstance> exists(example: Example<S>): Boolean
Link copied to clipboard
abstract fun existsById(id: Long): Boolean
Link copied to clipboard
abstract override fun <S : AttributeInstance> findAll(example: Example<S>): MutableList<S>
abstract override fun <S : AttributeInstance> findAll(example: Example<S>, sort: Sort): MutableList<S>
abstract override fun findAll(): MutableList<AttributeInstance>
abstract override fun findAll(sort: Sort): MutableList<AttributeInstance>
abstract fun findAll(pageable: Pageable): Page<AttributeInstance>
abstract fun <S : AttributeInstance> findAll(example: Example<S>, pageable: Pageable): Page<S>
Link copied to clipboard
Link copied to clipboard
abstract fun <S : AttributeInstance, R : Any> findBy(example: Example<S>, queryFunction: Function<FluentQuery.FetchableFluentQuery<S>, R>): R
Link copied to clipboard
Link copied to clipboard
abstract fun <S : AttributeInstance> findOne(example: Example<S>): Optional<S>
Link copied to clipboard
abstract fun flush()
Link copied to clipboard
Link copied to clipboard
abstract fun getById(id: Long): AttributeInstance
Link copied to clipboard
abstract fun getOne(id: Long): AttributeInstance
Link copied to clipboard
Link copied to clipboard
abstract fun <S : AttributeInstance> save(entity: S): S
Link copied to clipboard
abstract override fun <S : AttributeInstance> saveAll(entities: MutableIterable<S>): MutableList<S>
Link copied to clipboard
Link copied to clipboard
abstract fun <S : AttributeInstance> saveAndFlush(entity: S): S