ApplicationArguments

Provides access to the arguments that were used to run a SpringApplication.

Author

Phillip Webb

Since

1.3.0

Inheritors

Functions

Link copied to clipboard
abstract 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
abstract fun getNonOptionArgs(): List<String>
Return the collection of non-option arguments parsed.
Link copied to clipboard
abstract fun getOptionNames(): Set<String>
Return the names of all option arguments.
Link copied to clipboard
abstract fun getOptionValues(name: String): List<String>
Return the collection of values associated with the arguments option having the given name.
Link copied to clipboard
abstract fun getSourceArgs(): Array<String>
Return the raw unprocessed arguments that were passed to the application.