Uses of Interface
org.evoludo.util.CLODelegate

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

    Fields in org.evoludo.util declared as CLODelegate
    Modifier and Type
    Field
    Description
    private CLODelegate
    CLOption.delegate
    The delegate for parsing arguments, reporting settings and retrieving customized descriptions.
    Constructors in org.evoludo.util with parameters of type CLODelegate
    Modifier
    Constructor
    Description
     
    CLOption(String name, String defaultArg, String description, CLODelegate delegate)
    Creates command line option with the name name (with required argument), which defaults to defaultArg, and brief description description as well as the delegate delegate to process the argument and optionally retrieve the 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 description, CLODelegate delegate)
    Creates command line option with the name name (no arguments) and short 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, String description, CLODelegate delegate)
    Creates command line option with the name name of type type, which defaults to defaultArg, 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, String defaultArg, CLOption.Argument type, CLODelegate delegate)
    Creates command line option with the name name of type type, which defaults to defaultArg, 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.
     
    CLOption(String name, CLODelegate delegate)
    Creates command line option with the name name and the delegate to process the argument and provide the description.