DefaultApplicationArguments

Default implementation of ApplicationArguments.

Author

Phillip Webb

Since

1.4.1

Constructors

Link copied to clipboard
constructor(args: Array<String>)

Functions

Link copied to clipboard
open fun containsOption(name: String): Boolean
Return whether the set of option arguments parsed from the arguments contains an option with the given name.
Link copied to clipboard
Return the collection of non-option arguments parsed.
Link copied to clipboard
Return the names of all option arguments.
Link copied to clipboard
open fun getOptionValues(name: String): List<String>
Return the collection of values associated with the arguments option having the given name.
Link copied to clipboard
Return the raw unprocessed arguments that were passed to the application.