Class ParamSpec


  • public class ParamSpec
    extends Object
    Specifies the syntax for a single option on a command line.
    • Constructor Detail

      • ParamSpec

        public ParamSpec​(String[] optNames,
                         int numberOfNeededArgs,
                         String desc)
      • ParamSpec

        public ParamSpec​(String optName,
                         int needed,
                         String desc)
    • Method Detail

      • setDoc

        public void setDoc​(String docLine)
      • getDesc

        public String getDesc()
      • getNumOptions

        public int getNumOptions()
      • getOption

        public Param getOption​(int i)
      • getParam

        public Param getParam()
        Returns:
        last param, if at least one was defined, else null
      • getAllArguments

        public Iterator<String> getAllArguments()
        merge all option args into one list e.g. value1, value2 from -param value1 -param value2
      • hasArguments

        public boolean hasArguments()
      • matches

        public boolean matches​(String name)