parseCommandLineOptions abstract method

StringSeq parseCommandLineOptions(
  1. String prefix,
  2. StringSeq options
)

Convert a sequence of command-line options into properties. All options that begin with --prefix. are converted into properties. If the prefix is empty, all options that begin with -- are converted to properties. @param prefix The property prefix, or an empty string to convert all options starting with --. @param options The command-line options. @return The command-line options that do not start with the specified prefix, in their original order.

Implementation

StringSeq parseCommandLineOptions(String prefix, StringSeq options);