Uses of Enum Class
org.evoludo.util.CLOption.Argument
Packages that use CLOption.Argument
-
Uses of CLOption.Argument in org.evoludo.util
Fields in org.evoludo.util declared as CLOption.ArgumentModifier and TypeFieldDescription(package private) final CLOption.ArgumentCLOption.typeThe type of the command line option with no, optional, or required argument.Methods in org.evoludo.util that return CLOption.ArgumentModifier and TypeMethodDescriptionCLOption.getType()Get the type of the option.static CLOption.ArgumentReturns the enum constant of this class with the specified name.static CLOption.Argument[]CLOption.Argument.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.evoludo.util with parameters of type CLOption.ArgumentModifierConstructorDescriptionCLOption(String name, String defaultArg, CLOption.Argument type, String description, CLOption.CLODelegate delegate) Creates command line option with the namenameof typetype, which defaults todefaultArg, and 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, 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.Argument type, CLOption.CLODelegate delegate) Creates command line option with the namenameof typetype, which defaults todefaultArg, as well as the delegatedelegateto process the argument and retrieve the description.