c

moped.json

ErrorResult

final case class ErrorResult(error: Diagnostic) extends Result[Nothing] with Product with Serializable

Linear Supertypes
Result[Nothing], Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ErrorResult
  2. Result
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ErrorResult(error: Diagnostic)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. val error: Diagnostic
  8. def exists(fn: (Nothing) => Boolean): Boolean
    Definition Classes
    Result
  9. def filter(fn: (Nothing) => Boolean): Result[Nothing]
    Definition Classes
    Result
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. def flatMap[B](fn: (Nothing) => Result[B]): Result[B]
    Definition Classes
    Result
  12. def fold[B](onValue: (Nothing) => B, onError: (Diagnostic) => B): B
    Definition Classes
    Result
  13. def foreach[B](fn: (Nothing) => B): Unit
    Definition Classes
    Result
  14. def get: Nothing
    Definition Classes
    Result
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def getOrElse[B >: Nothing](other: => B): B
    Definition Classes
    Result
  17. def isError: Boolean
    Definition Classes
    Result
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def isValue: Boolean
    Definition Classes
    Result
  20. def iterator(): Iterator[Nothing]
    Definition Classes
    Result
  21. def map[B](fn: (Nothing) => B): Result[B]
    Definition Classes
    Result
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def orElse[B >: Nothing](other: => Result[B]): Result[B]
    Definition Classes
    Result
  26. def product[B](other: Result[B]): Result[(Nothing, B)]
    Definition Classes
    Result
  27. def productElementNames: Iterator[String]
    Definition Classes
    Product
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toEither: Either[Diagnostic, Nothing]
    Definition Classes
    Result
  30. def toList: List[Nothing]
    Definition Classes
    Result
  31. def toOption: Option[Nothing]
    Definition Classes
    Result
  32. def upcast: Result[Nothing]

    Use this method to upcast this type from ErrorResult or ValueResult into Result[A]

    Use this method to upcast this type from ErrorResult or ValueResult into Result[A]

    returns

    this instance unchanged, this method is only used to influence type checking.

    Definition Classes
    Result
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. def withFilter(fn: (Nothing) => Boolean): Result[Nothing]
    Definition Classes
    Result

Inherited from Result[Nothing]

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped