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.Argument
CLOption.type
The 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.Argument
Returns 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 namename
of typetype
, which defaults todefaultArg
, and brief descriptiondescription
as well as the delegatedelegate
to 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 namename
of typetype
, which defaults todefaultArg
, in categorycategory
and brief descriptiondescription
as well as the delegatedelegate
to 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 namename
of typetype
, which defaults todefaultArg
, and catgeorycategory
as well as the delegatedelegate
to process the argument and retrieve the description.CLOption
(String name, String defaultArg, CLOption.Argument type, CLOption.CLODelegate delegate) Creates command line option with the namename
of typetype
, which defaults todefaultArg
, as well as the delegatedelegate
to process the argument and retrieve the description.