Class BasicParser

java.lang.Object
org.apache.commons.cli.Parser
org.apache.commons.cli.BasicParser
All Implemented Interfaces:
CommandLineParser

@Deprecated public class BasicParser extends Parser
Deprecated.
since 1.3, use the DefaultParser instead
The class BasicParser provides a very simple implementation of the flatten method.
  • Constructor Details

  • Method Details

    • flatten

      protected String[] flatten(Options options, String[] arguments, boolean stopAtNonOption)
      Deprecated.

      A simple implementation of Parser's abstract flatten method.

      Note: options and stopAtNonOption are not used in this flatten method.

      Specified by:
      flatten in class Parser
      Parameters:
      options - The command line Options
      arguments - The command line arguments to be parsed
      stopAtNonOption - Specifies whether to stop flattening when an non option is found.
      Returns:
      The arguments String array.