Package com.beust.jcommander
Interface IParameterizedParser
- All Known Implementing Classes:
DefaultParameterizedParser
public interface IParameterizedParser
Thin interface allows the Parameterized parsing mechanism, which reflects an object to find the
JCommander annotations, to be replaced at runtime for cases where the source code cannot
be directly annotated with JCommander annotations, but may have other annotations such as
JSON annotations that can be used to reflect as JCommander parameters.
-
Method Summary
Modifier and TypeMethodDescriptionParses the given object for any command line related annotations and returns the list of JCommander Parameterized definitions.
-
Method Details
-
parseArg
Parses the given object for any command line related annotations and returns the list of JCommander Parameterized definitions.- Parameters:
annotatedObj
- the object that contains the annotations.- Returns:
- non-null List but may be empty
-