instep.dao.sql.TableDeletePlan.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of instep-dao Show documentation
Show all versions of instep-dao Show documentation
Tools are designed for more easier coding.
The newest version!
package instep.dao.sql
import instep.dao.sql.impl.DefaultTableDeletePlan
interface TableDeletePlan : SQLPlan, WhereClause {
fun whereKey(key: Any): TableDeletePlan
}
interface TableDeletePlanFactory {
fun createInstance(table: Table): T
companion object : TableDeletePlanFactory {
override fun createInstance(table: Table): TableDeletePlan {
return DefaultTableDeletePlan(table)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy