All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.exposed.dao.IntEntity.kt Maven / Gradle / Ivy

There is a newer version: 0.57.0
Show newest version
package org.jetbrains.exposed.dao

import org.jetbrains.exposed.dao.id.EntityID
import org.jetbrains.exposed.dao.id.IdTable

abstract class IntEntity(id: EntityID) : Entity(id)

abstract class IntEntityClass constructor(
    table: IdTable,
    entityType: Class? = null,
    entityCtor: ((EntityID) -> E)? = null
) : EntityClass(table, entityType, entityCtor)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy