Uses of Interface
org.kohsuke.args4j.OptionHandlerFilter
-
Packages that use OptionHandlerFilter Package Description org.kohsuke.args4j Core classes of the Args4J command line parser. -
-
Uses of OptionHandlerFilter in org.kohsuke.args4j
Classes in org.kohsuke.args4j that implement OptionHandlerFilter Modifier and Type Class Description class
ExampleMode
Deprecated.Fields in org.kohsuke.args4j declared as OptionHandlerFilter Modifier and Type Field Description static OptionHandlerFilter
OptionHandlerFilter. ALL
Print all defined options in the example.static OptionHandlerFilter
OptionHandlerFilter. PUBLIC
Print all non-hidden options.static OptionHandlerFilter
OptionHandlerFilter. REQUIRED
Print all required options.Methods in org.kohsuke.args4j with parameters of type OptionHandlerFilter Modifier and Type Method Description String
CmdLineParser. printExample(OptionHandlerFilter filter)
Formats a command line example into a string.String
CmdLineParser. printExample(OptionHandlerFilter mode, ResourceBundle rb)
Formats a command line example into a string.protected void
CmdLineParser. printOption(PrintWriter out, OptionHandler handler, int len, ResourceBundle rb, OptionHandlerFilter filter)
Prints usage information for a given option.void
CmdLineParser. printUsage(Writer out, ResourceBundle rb, OptionHandlerFilter filter)
Prints the list of all the non-hidden options and their usages to the screen.
-