Constructors
Types
Link copied to clipboard
data class ClassLoaderResource( val classLoader: ClassLoader?, val tempDirectory: Path?, val ownClassLoader: Boolean = true) : Closeable
Content copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
fun option_flag( short: Char?, long: String?, description: String): Option.Flag
Content copied to clipboard
Link copied to clipboard
fun option_int( short: Char?, long: String?, description: String, defaultValue: Int? = null): Option.Valued<Int>
Content copied to clipboard
Link copied to clipboard
fun option_long( short: Char?, long: String?, description: String, defaultValue: Long? = null): Option.Valued<Long>
Content copied to clipboard
Link copied to clipboard
fun option_path( short: Char?, long: String?, description: String, defaultValue: Path? = null): Option.Valued<Path>
Content copied to clipboard
Link copied to clipboard
fun option_string( short: Char?, long: String?, description: String, defaultValue: String? = null): Option.Valued<String>
Content copied to clipboard
Link copied to clipboard