Uses of Class
org.evoludo.util.CLOCategory
Packages that use CLOCategory
-
Uses of CLOCategory in org.evoludo.util
Fields in org.evoludo.util declared as CLOCategoryModifier and TypeFieldDescription(package private) final CLOCategoryCLOption.categoryThe category of the command line option.static final CLOCategoryCLOCategory.GlobalThe category for global options.static final CLOCategoryCLOCategory.GUIThe category for user interface specific options.static final CLOCategoryCLOCategory.ModelThe category for model specific options.static final CLOCategoryCLOCategory.ModuleThe category for module specific options.static final CLOCategoryCLOCategory.SimulationThe category for simulation specific options.Methods in org.evoludo.util that return CLOCategoryModifier and TypeMethodDescriptionprivate CLOCategoryCLOParser.findNextCategory(int priority) Finds the next category with highest priority less than the given priority.Methods in org.evoludo.util with parameters of type CLOCategoryModifier and TypeMethodDescriptionprivate voidCLOParser.appendOptionsForCategory(StringBuilder help, CLOCategory category) Appends help text for options in the specified category.Constructors in org.evoludo.util with parameters of type CLOCategoryModifierConstructorDescriptionCLOption(String name, String defaultArg, CLOCategory category, String description, 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, String defaultArg, CLOption.Argument type, CLOCategory category, String description, 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, CLOCategory category, 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, CLOCategory category, String description, 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, CLOCategory category, CLODelegate delegate) Creates command line option with the namename(no arguments) with categorycategoryand thedelegateto process the argument and retrieve the description.