Package jargs.gnu
Class CmdLineParser.Option.StringOption
java.lang.Object
jargs.gnu.CmdLineParser.Option
jargs.gnu.CmdLineParser.Option.StringOption
- All Implemented Interfaces:
Serializable
- Enclosing class:
CmdLineParser.Option
An option that expects a string value.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class jargs.gnu.CmdLineParser.Option
CmdLineParser.Option.BooleanOption, CmdLineParser.Option.DoubleOption, CmdLineParser.Option.IntegerOption, CmdLineParser.Option.LongOption, CmdLineParser.Option.StringOption
-
Constructor Summary
ConstructorsConstructorDescriptionStringOption
(char shortForm, String longForm) Instantiates a new string option.StringOption
(String longForm) Instantiates a new string option. -
Method Summary
Modifier and TypeMethodDescriptionprotected Object
parseValue
(String arg, Locale locale) Override to extract and convert an option value passed on the command-line.Methods inherited from class jargs.gnu.CmdLineParser.Option
getValue, longForm, shortForm, wantsValue
-
Constructor Details
-
StringOption
Instantiates a new string option.- Parameters:
shortForm
- the short formlongForm
- the long form
-
StringOption
Instantiates a new string option.- Parameters:
longForm
- the long form
-
-
Method Details
-
parseValue
Description copied from class:CmdLineParser.Option
Override to extract and convert an option value passed on the command-line.- Overrides:
parseValue
in classCmdLineParser.Option
- Parameters:
arg
- the arglocale
- the locale- Returns:
- the object
-