run.smt.ktest.db.query.Response.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktest-db Show documentation
Show all versions of ktest-db Show documentation
Database intergration for kTest
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?
}