CreatureVariantRepository

@Repository
interface CreatureVariantRepository : KRepository<CreatureVariant, Long>

Types

Link copied to clipboard
object Companion

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