Class

scopt

OptionDef

Related Doc: package scopt

Permalink

class OptionDef[A, C] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OptionDef
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OptionDef(parser: OptionParser[C], kind: OptionDefKind, name: String)(implicit arg0: Read[A])

    Permalink
  2. new OptionDef(_parser: OptionParser[C], _id: Int, _kind: OptionDefKind, _name: String, _shortOpt: Option[String], _keyName: Option[String], _valueName: Option[String], _desc: String, _action: (A, C) ⇒ C, _validations: Seq[(A) ⇒ Either[String, Unit]], _configValidations: Seq[(C) ⇒ Either[String, Unit]], _parentId: Option[Int], _minOccurs: Int, _maxOccurs: Int, _isHidden: Boolean)(implicit arg0: Read[A])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def abbr(x: String): OptionDef[A, C]

    Permalink

    Adds short option -x.

  5. def action(f: (A, C) ⇒ C): OptionDef[A, C]

    Permalink

    Adds a callback function.

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def children(xs: OptionDef[_, C]*): OptionDef[A, C]

    Permalink

    Adds opt/arg under this command.

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def foreach(f: (A) ⇒ Unit): OptionDef[A, C]

    Permalink

    Adds a callback function.

  13. def fullName: String

    Permalink
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hidden(): OptionDef[A, C]

    Permalink

    Hides the option in any usage text.

  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def keyName(x: String): OptionDef[A, C]

    Permalink

    Adds key name used in the usage text.

  19. def keyValueName(k: String, v: String): OptionDef[A, C]

    Permalink

    Adds key and value names used in the usage text.

  20. def maxOccurs(n: Int): OptionDef[A, C]

    Permalink

    Allows the argument to appear at most n times.

  21. def minOccurs(n: Int): OptionDef[A, C]

    Permalink

    Requires the option to appear at least n times.

  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. def optional(): OptionDef[A, C]

    Permalink

    Chanages the option to be optional.

  26. def required(): OptionDef[A, C]

    Permalink

    Requires the option to appear at least once.

  27. def shortDescription: String

    Permalink
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def text(x: String): OptionDef[A, C]

    Permalink

    Adds description in the usage text.

  30. def toString(): String

    Permalink
    Definition Classes
    OptionDef → AnyRef → Any
  31. def unbounded(): OptionDef[A, C]

    Permalink

    Allows the argument to appear multiple times.

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

    Permalink

    Adds custom validation.

  33. def valueName(x: String): OptionDef[A, C]

    Permalink

    Adds value name used in the usage text.

  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped