Uses of Class
org.evoludo.util.CLOCategory

Packages that use CLOCategory
Package
Description
Utility classes and functions.
  • Uses of CLOCategory in org.evoludo.util

    Fields in org.evoludo.util declared as CLOCategory
    Modifier and Type
    Field
    Description
    (package private) final CLOCategory
    CLOption.category
    The category of the command line option.
    static final CLOCategory
    CLOCategory.Global
    The category for global options.
    static final CLOCategory
    CLOCategory.GUI
    The category for user interface specific options.
    static final CLOCategory
    CLOCategory.Model
    The category for model specific options.
    static final CLOCategory
    CLOCategory.Module
    The category for module specific options.
    static final CLOCategory
    CLOCategory.Simulation
    The category for simulation specific options.
    Methods in org.evoludo.util that return CLOCategory
    Modifier and Type
    Method
    Description
    private CLOCategory
    CLOParser.findNextCategory(int priority)
    Finds the next category with highest priority less than the given priority.
    Methods in org.evoludo.util with parameters of type CLOCategory
    Modifier and Type
    Method
    Description
    private void
    Appends help text for options in the specified category.
    Constructors in org.evoludo.util with parameters of type CLOCategory
    Modifier
    Constructor
    Description
     
    CLOption(String name, String defaultArg, CLOCategory category, String description, CLODelegate delegate)
    Creates command line option with the name name (with required argument), which defaults to defaultArg, of catgeory category and brief description description as well as the delegate delegate to 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 name name of type type, which defaults to defaultArg, in category category and brief description description as well as the delegate delegate to 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 name name of type type, which defaults to defaultArg, and catgeory category as well as the delegate delegate to process the argument and retrieve the description.
     
    CLOption(String name, CLOCategory category, String description, CLODelegate delegate)
    Creates command line option with the name name (no arguments) with category category and brief description description as well as the delegate delegate to process the argument and optionally retrieve the description.
     
    CLOption(String name, CLOCategory category, CLODelegate delegate)
    Creates command line option with the name name (no arguments) with category category and the delegate to process the argument and retrieve the description.