CreatureEvolutionRepository

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