package argparse
Type Members
- abstract class CommandLineParser extends AnyRef
- case class Default[T](name: String, value: T, description: String = "") extends CommandLineParser with Product with Serializable
- case class Flag(name: String, short: String, long: String = "", description: String = "") extends CommandLineParser with Product with Serializable
- class HelpException extends Exception
- case class Optional(name: String, short: String, long: String = "", default: Option[String] = None, description: String = "") extends CommandLineParser with Product with Serializable
- case class Parser(name: String, description: String = "") extends CommandLineParser with Product with Serializable
- class ParsingException extends Exception
- class ParsingResult extends AnyRef
- case class Positional(name: String, description: String = "") extends CommandLineParser with Product with Serializable