invirt.data.Page.kt Maven / Gradle / Ivy
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