vertx / io.vertx.kotlin.core.cli

Package io.vertx.kotlin.core.cli

Functions

Argument

fun Argument(argName: String? = null, defaultValue: String? = null, description: String? = null, hidden: Boolean? = null, index: Int? = null, multiValued: Boolean? = null, required: Boolean? = null): Argument

A function providing a DSL for building io.vertx.core.cli.Argument objects.

Option

fun Option(argName: String? = null, choices: Iterable<String>? = null, defaultValue: String? = null, description: String? = null, flag: Boolean? = null, help: Boolean? = null, hidden: Boolean? = null, longName: String? = null, multiValued: Boolean? = null, required: Boolean? = null, shortName: String? = null, singleValued: Boolean? = null): Option

A function providing a DSL for building io.vertx.core.cli.Option objects.