scopt

OptionDef

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

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

  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])

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def abbr(x: String): OptionDef[A, C]

    Adds short option -x.

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

    Adds a callback function.

  8. final def asInstanceOf[T0]: T0

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

    Adds opt/arg under this command.

  10. def clone(): AnyRef

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

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

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

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

    Adds a callback function.

  15. def fullName: String

  16. final def getClass(): Class[_]

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

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

    Hides the option in any usage text.

  19. final def isInstanceOf[T0]: Boolean

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

    Adds key name used in the usage text.

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

    Adds key and value names used in the usage text.

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

    Allows the argument to appear at most n times.

  23. def minOccurs(n: Int): OptionDef[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
  26. final def notifyAll(): Unit

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

    Chanages the option to be optional.

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

    Requires the option to appear at least once.

  29. def shortDescription: String

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

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

    Adds description in the usage text.

  32. def toString(): String

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

    Allows the argument to appear multiple times.

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

    Adds custom validation.

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

    Adds value name used in the usage text.

  36. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped