Uses of Class
org.evoludo.util.CLOption.Category
Packages that use CLOption.Category
-
Uses of CLOption.Category in org.evoludo.util
Fields in org.evoludo.util declared as CLOption.CategoryModifier and TypeFieldDescription(package private) final CLOption.Category
CLOption.category
The category of the command line option.static final CLOption.Category
CLOption.Category.Global
The category for global options.static final CLOption.Category
CLOption.Category.GUI
The category for user interface specific options.static final CLOption.Category
CLOption.Category.Model
The category for model specific options.static final CLOption.Category
CLOption.Category.Module
The category for module specific options.static final CLOption.Category
CLOption.Category.Simulation
The category for simulation specific options.Constructors in org.evoludo.util with parameters of type CLOption.CategoryModifierConstructorDescriptionCLOption
(String name, String defaultArg, CLOption.Argument type, CLOption.Category category, String description, CLOption.CLODelegate delegate) Creates command line option with the namename
of typetype
, which defaults todefaultArg
, in categorycategory
and brief descriptiondescription
as well as the delegatedelegate
to process the argument and optionally retrieve the description.CLOption
(String name, String defaultArg, CLOption.Argument type, CLOption.Category category, CLOption.CLODelegate delegate) Creates command line option with the namename
of typetype
, which defaults todefaultArg
, and catgeorycategory
as well as the delegatedelegate
to process the argument and retrieve the description.CLOption
(String name, String defaultArg, CLOption.Category category, String description, CLOption.CLODelegate delegate) Creates command line option with the namename
(with required argument), which defaults todefaultArg
, of catgeorycategory
and brief descriptiondescription
as well as the delegatedelegate
to process the argument and optionally retrieve the description.CLOption
(String name, CLOption.Category category, String description, CLOption.CLODelegate delegate) Creates command line option with the namename
(no arguments) with categorycategory
and brief descriptiondescription
as well as the delegatedelegate
to process the argument and optionally retrieve the description.CLOption
(String name, CLOption.Category category, CLOption.CLODelegate delegate) Creates command line option with the namename
(no arguments) with categorycategory
and thedelegate
to process the argument and retrieve the description.