io.vertx.kotlin.ext.mongo.FindOptions.kt Maven / Gradle / Ivy
package io.vertx.kotlin.ext.mongo
import io.vertx.ext.mongo.FindOptions
/**
* A function providing a DSL for building [io.vertx.ext.mongo.FindOptions] objects.
*
* Options used to configure find operations.
*
* @param fields Set the fields
* @param limit Set the limit
* @param skip Set the skip
* @param sort Set the sort document
*
*
* NOTE: This function has been automatically generated from the [io.vertx.ext.mongo.FindOptions original] using Vert.x codegen.
*/
fun FindOptions(
fields: io.vertx.core.json.JsonObject? = null,
limit: Int? = null,
skip: Int? = null,
sort: io.vertx.core.json.JsonObject? = null): FindOptions = io.vertx.ext.mongo.FindOptions().apply {
if (fields != null) {
this.setFields(fields)
}
if (limit != null) {
this.setLimit(limit)
}
if (skip != null) {
this.setSkip(skip)
}
if (sort != null) {
this.setSort(sort)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy