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

com.dbobjekts.api.Slice.kt Maven / Gradle / Ivy

There is a newer version: 0.6.0-RC2
Show newest version
package com.dbobjekts.api


data class Slice(
    val skip: Long,
    val limit: Long
) {
    init {
        if (skip < 0)
            throw IllegalArgumentException("Skip must be >= 0")
        if (limit < 1)
            throw IllegalArgumentException("Limit must be >= 1")
    }

    companion object {
        fun singleRow(): Slice {
            return Slice(0, 1)
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy