OwnedCreatureRepository

interface OwnedCreatureRepository : KRepository<OwnedCreature, Long>

Properties

Link copied to clipboard
Link copied to clipboard
abstract val sql: KSqlClient
Link copied to clipboard
abstract val type: ImmutableType

Functions

Link copied to clipboard
abstract fun count(): Long
Link copied to clipboard
open fun delete(entity: OwnedCreature)
abstract fun delete(entity: OwnedCreature, mode: DeleteMode): Int
Link copied to clipboard
abstract fun deleteAll()
open fun deleteAll(entities: Iterable<OwnedCreature>)
abstract fun deleteAll(entities: Iterable<OwnedCreature>, mode: DeleteMode): Int
Link copied to clipboard
@AliasFor(value = "deleteByIds")
open fun deleteAllById(ids: Iterable<Long>)
Link copied to clipboard
open fun deleteById(id: Long)
abstract fun deleteById(id: Long, mode: DeleteMode): Int
Link copied to clipboard
@AliasFor(value = "deleteAllById")
open fun deleteByIds(ids: Iterable<Long>)
abstract fun deleteByIds(ids: Iterable<Long>, mode: DeleteMode): Int
Link copied to clipboard
open fun existsById(id: Long): Boolean
Link copied to clipboard
abstract fun findAll(fetcher: Fetcher<OwnedCreature>?): List<OwnedCreature>
abstract override fun findAll(pageable: Pageable): Page<OwnedCreature>
open override fun findAll(sort: Sort): List<OwnedCreature>
abstract fun findAll(fetcher: Fetcher<OwnedCreature>?, block: SortDsl<OwnedCreature>.() -> Unit): List<OwnedCreature>
abstract fun findAll(fetcher: Fetcher<OwnedCreature>?, sort: Sort): List<OwnedCreature>
abstract fun findAll(pageable: Pageable, fetcher: Fetcher<OwnedCreature>?): Page<OwnedCreature>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<OwnedCreature>?, block: SortDsl<OwnedCreature>.() -> Unit?): Page<OwnedCreature>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<OwnedCreature>?, sort: Sort): Page<OwnedCreature>
Link copied to clipboard
@AliasFor(value = "findByIds")
open fun findAllById(ids: Iterable<Long>): List<OwnedCreature>
Link copied to clipboard
open fun findById(id: Long, fetcher: Fetcher<OwnedCreature>): Optional<OwnedCreature>
Link copied to clipboard
@AliasFor(value = "findAllById")
abstract fun findByIds(ids: Iterable<Long>, fetcher: Fetcher<OwnedCreature>?): List<OwnedCreature>
Link copied to clipboard
abstract fun findMapByIds(ids: Iterable<Long>, fetcher: Fetcher<OwnedCreature>?): Map<Long, OwnedCreature>
Link copied to clipboard
abstract fun findNullable(id: Long, fetcher: Fetcher<OwnedCreature>?): OwnedCreature?
Link copied to clipboard
open fun insert(entity: OwnedCreature, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
open fun insert(input: Input<OwnedCreature>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
Link copied to clipboard
open fun insertIfAbsent(entity: OwnedCreature, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
open fun insertIfAbsent(input: Input<OwnedCreature>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
Link copied to clipboard
open fun merge(entity: OwnedCreature, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
open fun merge(input: Input<OwnedCreature>, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
Link copied to clipboard
open fun <S : OwnedCreature> save(entity: S): S
open fun save(input: Input<OwnedCreature>, block: KSaveCommandDsl.() -> Unit?): OwnedCreature
open fun <V : View<OwnedCreature>> save(entity: OwnedCreature, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(entity: OwnedCreature, fetcher: Fetcher<OwnedCreature>, block: KSaveCommandDsl.() -> Unit?): OwnedCreature
open fun <V : View<OwnedCreature>> save(input: Input<OwnedCreature>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(input: Input<OwnedCreature>, fetcher: Fetcher<OwnedCreature>, block: KSaveCommandDsl.() -> Unit?): OwnedCreature
open fun save(entity: OwnedCreature, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
open fun save(input: Input<OwnedCreature>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
open fun <V : View<OwnedCreature>> save(entity: OwnedCreature, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(entity: OwnedCreature, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<OwnedCreature>, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
open fun <V : View<OwnedCreature>> save(input: Input<OwnedCreature>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(input: Input<OwnedCreature>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<OwnedCreature>, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
Link copied to clipboard
open fun <S : OwnedCreature> saveAll(entity: Iterable<S>): List<S>
Link copied to clipboard
open fun saveCommand(entity: OwnedCreature, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<OwnedCreature>
open fun saveCommand(input: Input<OwnedCreature>, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<OwnedCreature>
open fun saveCommand(entity: OwnedCreature, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<OwnedCreature>
open fun saveCommand(input: Input<OwnedCreature>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<OwnedCreature>
Link copied to clipboard
open fun saveEntities(entities: Iterable<OwnedCreature>, block: KSaveCommandDsl.() -> Unit?): List<OwnedCreature>
open fun <V : View<OwnedCreature>> saveEntities(entities: Iterable<OwnedCreature>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<OwnedCreature>, fetcher: Fetcher<OwnedCreature>, block: KSaveCommandDsl.() -> Unit?): List<OwnedCreature>
open fun saveEntities(entities: Iterable<OwnedCreature>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<OwnedCreature>
open fun <V : View<OwnedCreature>> saveEntities(entities: Iterable<OwnedCreature>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<OwnedCreature>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<OwnedCreature>, block: KSaveCommandPartialDsl.() -> Unit?): List<OwnedCreature>
Link copied to clipboard
open fun saveEntitiesCommand(entities: Iterable<OwnedCreature>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<OwnedCreature>
open fun saveEntitiesCommand(entities: Iterable<OwnedCreature>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<OwnedCreature>
Link copied to clipboard
open fun saveInputs(inputs: Iterable<Input<OwnedCreature>>, block: KSaveCommandDsl.() -> Unit?): List<OwnedCreature>
open fun <V : View<OwnedCreature>> saveInputs(inputs: Iterable<Input<OwnedCreature>>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<OwnedCreature>>, fetcher: Fetcher<OwnedCreature>, block: KSaveCommandDsl.() -> Unit?): List<OwnedCreature>
open fun saveInputs(inputs: Iterable<Input<OwnedCreature>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<OwnedCreature>
open fun <V : View<OwnedCreature>> saveInputs(inputs: Iterable<Input<OwnedCreature>>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<OwnedCreature>>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<OwnedCreature>, block: KSaveCommandPartialDsl.() -> Unit?): List<OwnedCreature>
Link copied to clipboard
open fun saveInputsCommand(input: Iterable<Input<OwnedCreature>>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<OwnedCreature>
open fun saveInputsCommand(inputs: Iterable<Input<OwnedCreature>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<OwnedCreature>
Link copied to clipboard
open fun update(entity: OwnedCreature, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
open fun update(input: Input<OwnedCreature>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): OwnedCreature
Link copied to clipboard
abstract fun <V : View<OwnedCreature>> viewer(viewType: KClass<V>): KRepository.Viewer<OwnedCreature, Long, V>