Trait/Object

zio.cli

Command

Related Docs: object Command | package cli

Permalink

sealed trait Command[+A] extends AnyRef

A Command represents a command in a command-line application. Every command-line application will have at least one command: the application itself. Other command-line applications may support multiple commands.

Self Type
Command[A]
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Command
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def helpDoc: HelpDoc

    Permalink
  2. abstract def names: Set[String]

    Permalink
  3. abstract def parse(args: List[String], conf: CliConfig): IO[ValidationError, CommandDirective[A]]

    Permalink
  4. abstract def synopsis: UsageSynopsis

    Permalink

Concrete 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. final def as[B](b: ⇒ B): Command[B]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def map[B](f: (A) ⇒ B): Command[B]

    Permalink
  14. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  17. final def orElse[A1 >: A](that: Command[A1]): Command[A1]

    Permalink
  18. final def orElseEither[B](that: Command[B]): Command[Either[A, B]]

    Permalink
  19. final def subcommands[B](c1: Command[B], c2: Command[B], cs: Command[B]*)(implicit ev: Reducable[A, B]): Command[Out]

    Permalink
  20. final def subcommands[B](that: Command[B])(implicit ev: Reducable[A, B]): Command[Out]

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

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def withHelp(help: HelpDoc): Command[A]

    Permalink
  27. def withHelp(help: String): Command[A]

    Permalink
  28. final def |[A1 >: A](that: Command[A1]): Command[A1]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped