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

run.smt.ktest.db.query.Response.kt Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package run.smt.ktest.db.query

/**
 * SQL response that can be represented as either list, map or single entity
 */
interface Response {
    fun asList(): List
    fun asMap(): Map?
    fun single(): T?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy