caseapp.core

ParserEither

final case class ParserEither[T, D0](underlying: Aux[T, D0]) extends Parser[Either[String, T]] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Parser[Either[String, T]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ParserEither
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Parser
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ParserEither(underlying: Aux[T, D0])

Type Members

  1. type D = D0

    Definition Classes
    ParserEitherParser

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 apply(args: Seq[String]): Either[String, (Either[String, T], Seq[String])]

    Definition Classes
    Parser
  7. def args: Seq[Arg]

    Definition Classes
    ParserEitherParser
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def detailedParse(args: Seq[String]): Either[String, (Either[String, T], Seq[String], Seq[String])]

    Keeps the remaining args before and after a possible -- separated

    Keeps the remaining args before and after a possible -- separated

    Definition Classes
    Parser
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def get(d: D): Right[String, Either[String, T]]

    Definition Classes
    ParserEitherParser
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def init: (underlying)#D

    Definition Classes
    ParserEitherParser
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. def map[U](f: (Either[String, T]) ⇒ U): Aux[U, D]

    Definition Classes
    Parser
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. def parse(args: Seq[String]): Either[String, (Either[String, T], Seq[String])]

    Definition Classes
    Parser
  22. def step(args: Seq[String], d: D): Either[String, Option[(D, Seq[String])]]

    Definition Classes
    ParserEitherParser
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. val underlying: Aux[T, D0]

  25. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def withHelp: Parser[WithHelp[Either[String, T]]]

    Definition Classes
    Parser

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Parser[Either[String, T]]

Inherited from AnyRef

Inherited from Any

Ungrouped