Class OptionsParser

    • Constructor Detail

      • OptionsParser

        public OptionsParser​(boolean exit,
                             PrintStream out,
                             PrintStream err)
        Create a fresh parser for command-line options. Calling 'parse' will actually perform the parsing of the options.
        Parameters:
        exit - If true call System.exit on error, otherwise just return a non-zero value.
        out - Stream used for output.
        err - Stream used for errors.
    • Method Detail

      • setBinaryName

        public void setBinaryName​(String binaryName)
        Set the name displayed for the current program when printing usage.
      • registerOption

        public void registerOption​(String option,
                                   @Nullable String argName,
                                   String description,
                                   Function<String,​Boolean> optionArgProcessor)
        Register a new command-line options.
        Parameters:
        option - String used to indicate option on the command-line.
        argName - Name of option argument; null if no argument.
        description - Description of this option.
        optionArgProcessor - Function invoked when option is supplied. The function should return 'true' for successful option processing, and 'false' on error.