Packages

object ArgParser

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ArgParser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class CommandInfo(name: String, action: (Seq[String]) => Unit, description: String) extends Product with Serializable
  2. type Completer = (String) => Seq[String]
  3. type ConfigLookupFunction = (String) => Option[ConfigValue]
  4. case class ConfigValue(filename: String, line: Int, col: Int, value: String) extends Product with Serializable
  5. case class ParamInfo(isNamed: Boolean, names: Seq[String], isFlag: Boolean, repeats: Boolean, env: Option[String], description: String, completer: Completer, showDefault: Option[() => String]) extends Product with Serializable

    User-friendly parameter information, used for generating help message

  6. class Reporter extends AnyRef
  7. sealed trait Result extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val NoCompleter: (String) => Seq[Nothing]
  5. def apply(prog: String = "", description: String = "", version: String = "", reporter: Reporter = new Reporter, env: Map[String, String] = sys.env): ArgParser
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. def wrap(in: String, out: StringBuilder, width: Int, newLine: String): Unit
  23. case object EarlyExit extends Result with Product with Serializable

    Parsing signalled an early exit.

    Parsing signalled an early exit. This means that there wasn't an error, but that not all agruments were parsed, as one of them requested an early exit (for example --help or --version). Arguments are not available.

  24. case object Error extends Result with Product with Serializable

    There was an error during parsing.

    There was an error during parsing. Arguments are not available.

  25. case object Success extends Result with Product with Serializable

    Parsing succeeded.

    Parsing succeeded. Arguments are available.

Inherited from AnyRef

Inherited from Any

Ungrouped