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

invirt.data.Page.kt Maven / Gradle / Ivy

There is a newer version: 0.10.11
Show newest version
package invirt.data

data class Page(
    val from: Int,
    val size: Int
) {
    val pageIndex: Int = if (size > 0L) {
        from / size
    } else {
        throw IllegalArgumentException("Page size must be greater than 0")
    }

    init {
        if (from % size != 0) {
            throw IllegalArgumentException("from must be a multiple of size or 0")
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy