class OParser[A, C] extends AnyRef

A monadic commandline options parser.

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

Instance Constructors

  1. new OParser(head: OptionDef[A, C], rest: List[OptionDef[_, C]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++(other: OParser[_, C]): OParser[A, C]
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def abbr(x: String): OParser[A, C]

    Adds short option -x.

  6. def action(f: (A, C) ⇒ C): OParser[A, C]

    Adds a callback function.

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def children(cs: OParser[_, C]*): OParser[A, C]

    Adds a parser under this command.

  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def flatMap(f: (Unit) ⇒ OParser[_, C]): OParser[A, C]
  14. def foreach(f: (Unit) ⇒ Unit): Unit
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hidden(): OParser[A, C]

    Hides the option in any usage text.

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def keyName(x: String): OParser[A, C]

    Adds key name used in the usage text.

  20. def keyValueName(k: String, v: String): OParser[A, C]

    Adds key and value names used in the usage text.

  21. def map(f: (Unit) ⇒ Unit): OParser[A, C]
  22. def maxOccurs(n: Int): OParser[A, C]

    Allows the argument to appear at most n times.

  23. def minOccurs(n: Int): OParser[A, C]

    Requires the option to appear at least n times.

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. def optional(): OParser[A, C]

    Chanages the option to be optional.

  28. def required(): OParser[A, C]

    Requires the option to appear at least once.

  29. def subHead[B](head: OptionDef[B, C]): OParser[B, C]
    Attributes
    protected
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def text(x: String): OParser[A, C]

    Adds description in the usage text.

  32. def toList: List[OptionDef[_, C]]
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. def unbounded(): OParser[A, C]

    Allows the argument to appear multiple times.

  35. def validate(f: (A) ⇒ Either[String, Unit]): OParser[A, C]

    Adds custom validation.

  36. def valueName(x: String): OParser[A, C]

    Adds value name used in the usage text.

  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped