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.CategoryCLOption.categoryThe category of the command line option.static final CLOption.CategoryCLOption.Category.GlobalThe category for global options.static final CLOption.CategoryCLOption.Category.GUIThe category for user interface specific options.static final CLOption.CategoryCLOption.Category.ModelThe category for model specific options.static final CLOption.CategoryCLOption.Category.ModuleThe category for module specific options.static final CLOption.CategoryCLOption.Category.SimulationThe 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 namenameof typetype, which defaults todefaultArg, in categorycategoryand brief descriptiondescriptionas well as the delegatedelegateto 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 namenameof typetype, which defaults todefaultArg, and catgeorycategoryas well as the delegatedelegateto 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 catgeorycategoryand brief descriptiondescriptionas well as the delegatedelegateto 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 categorycategoryand brief descriptiondescriptionas well as the delegatedelegateto 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 categorycategoryand thedelegateto process the argument and retrieve the description.