scalaz

Failure

final case class Failure[E, A](e: E) extends Validation[E, A] with Product with Serializable

Source
Validation.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, Validation[E, A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Failure
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Validation
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Failure(e: E)

Type Members

  1. sealed trait SwitchingValidation[X] extends AnyRef

    Definition Classes
    Validation

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. def +++[EE >: E, AA >: A](x: ⇒ Validation[EE, AA])(implicit M1: Semigroup[AA], M2: Semigroup[EE]): Validation[EE, AA]

    Sums up values inside validation, if both are success or failure.

    Sums up values inside validation, if both are success or failure. Returns first failure otherwise.

    success(v1) +++ success(v2) ¬ニメ success(v1 + v2)
    success(v1) +++ failure(v2) ¬ニメ failure(v2)
    failure(v1) +++ success(v2) ¬ニメ failure(v1)
    failure(v1) +++ failure(v2) ¬ニメ failure(v1 + v2)
    Definition Classes
    Validation
  5. def +|+[EE >: E, AA >: A](x: Validation[EE, AA])(implicit es: Semigroup[EE], as: Semigroup[AA]): Validation[EE, AA]

    If this and that are both success, or both a failure, combine them with the provided Semigroup for each.

    If this and that are both success, or both a failure, combine them with the provided Semigroup for each. Otherwise, return the success. Alias for append

    Definition Classes
    Validation
  6. def :?>>[X](success: ⇒ X): SwitchingValidation[X]

    If this validation is success, return the given X value, otherwise, return the X value given to the return value.

    If this validation is success, return the given X value, otherwise, return the X value given to the return value.

    Definition Classes
    Validation
  7. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  9. def ===[EE >: E, AA >: A](x: ⇒ Validation[EE, AA])(implicit EE: Equal[EE], EA: Equal[AA]): Boolean

    Compare two validations values for equality.

    Compare two validations values for equality.

    Definition Classes
    Validation
  10. def @\/[EE, AA](k: (\/[E, A]) ⇒ \/[EE, AA]): Validation[EE, AA]

    Run a disjunction function and back to validation again.

    Run a disjunction function and back to validation again. Alias for disjunctioned

    Definition Classes
    Validation
  11. def ap[EE >: E, B](x: ⇒ Validation[EE, (A) ⇒ B])(implicit E: Semigroup[EE]): Validation[EE, B]

    Apply a function in the environment of the success of this validation, accumulating errors.

    Apply a function in the environment of the success of this validation, accumulating errors.

    Definition Classes
    Validation
  12. def append[EE >: E, AA >: A](that: Validation[EE, AA])(implicit es: Semigroup[EE], as: Semigroup[AA]): Validation[EE, AA]

    If this and that are both success, or both a failure, combine them with the provided Semigroup for each.

    If this and that are both success, or both a failure, combine them with the provided Semigroup for each. Otherwise, return the success. Alias for +|+

    Definition Classes
    Validation
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def bimap[C, D](f: (E) ⇒ C, g: (A) ⇒ D): Validation[C, D]

    Binary functor map on this validation.

    Binary functor map on this validation.

    Definition Classes
    Validation
  15. def bitraverse[G[+_], C, D](f: (E) ⇒ G[C], g: (A) ⇒ G[D])(implicit arg0: Functor[G]): G[Validation[C, D]]

    Binary functor traverse on this validation.

    Binary functor traverse on this validation.

    Definition Classes
    Validation
  16. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def compare[EE >: E, AA >: A](x: ⇒ Validation[EE, AA])(implicit EE: Order[EE], EA: Order[AA]): Ordering

    Compare two validations values for ordering.

    Compare two validations values for ordering.

    Definition Classes
    Validation
  18. def disjunction: \/[E, A]

    Convert to a disjunction.

    Convert to a disjunction.

    Definition Classes
    Validation
  19. def disjunctioned[EE, AA](k: (\/[E, A]) ⇒ \/[EE, AA]): Validation[EE, AA]

    Run a disjunction function and back to validation again.

    Run a disjunction function and back to validation again. Alias for @\/

    Definition Classes
    Validation
  20. val e: E

  21. def ensure[EE >: E](onFailure: ⇒ EE)(f: (A) ⇒ Boolean): Validation[EE, A]

    Ensures that the success value of this validation satisfies the given predicate, or fails with the given value.

    Ensures that the success value of this validation satisfies the given predicate, or fails with the given value.

    Definition Classes
    Validation
  22. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. def excepting[EE >: E](pf: PartialFunction[A, EE]): Validation[EE, A]

    Return a Validation formed by the application of a partial function across the success of this value:

    Return a Validation formed by the application of a partial function across the success of this value:

    strings map (_.parseInt excepting { case i if i < 0 => new Exception(s"Int must be positive: $i") })
    Definition Classes
    Validation
    Since

    7.0.2

  24. def exists(f: (A) ⇒ Boolean): Boolean

    Return true if this validation is a success value satisfying the given predicate.

    Return true if this validation is a success value satisfying the given predicate.

    Definition Classes
    Validation
  25. def filter[EE >: E](p: (A) ⇒ Boolean)(implicit M: Monoid[EE]): Validation[EE, A]

    Filter on the success of this validation.

    Filter on the success of this validation.

    Definition Classes
    Validation
  26. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. def findSuccess[EE >: E, AA >: A](that: ⇒ Validation[EE, AA])(implicit es: Semigroup[EE]): Validation[EE, AA]

    If this is a success, return it; otherwise, if that is a success, return it; otherwise, combine the failures with the specified semigroup.

    If this is a success, return it; otherwise, if that is a success, return it; otherwise, combine the failures with the specified semigroup.

    Definition Classes
    Validation
  28. def flatMap[EE >: E, B](f: (A) ⇒ Validation[EE, B]): Validation[EE, B]

    Bind through the success of this validation.

    Bind through the success of this validation.

    Definition Classes
    Validation
  29. def fold[X](fail: (E) ⇒ X, succ: (A) ⇒ X): X

    Catamorphism.

    Catamorphism. Run the first given function if failure, otherwise, the second given function.

    Definition Classes
    Validation
  30. def foldRight[B](z: ⇒ B)(f: (A, ⇒ B) ⇒ B): B

    Fold on the success of this validation.

    Fold on the success of this validation.

    Definition Classes
    Validation
  31. def forall(f: (A) ⇒ Boolean): Boolean

    Return true if this validation is a failure value or the success value satisfies the given predicate.

    Return true if this validation is a failure value or the success value satisfies the given predicate.

    Definition Classes
    Validation
  32. def foreach[U](f: (A) ⇒ U): Unit

    Run the side-effect on the success of this validation.

    Run the side-effect on the success of this validation.

    Definition Classes
    Validation
  33. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  34. def getOrElse[AA >: A](x: ⇒ AA): AA

    Return the success value of this validation or the given default if failure.

    Return the success value of this validation or the given default if failure. Alias for |

    Definition Classes
    Validation
  35. def isFailure: Boolean

    Return true if this validation is failure.

    Return true if this validation is failure.

    Definition Classes
    Validation
  36. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  37. def isSuccess: Boolean

    Return true if this validation is success.

    Return true if this validation is success.

    Definition Classes
    Validation
  38. def leftMap[C](f: (E) ⇒ C): Validation[C, A]

    Run the given function on the left value.

    Run the given function on the left value.

    Definition Classes
    Validation
  39. def loopFailure[EE >: E, AA >: A, X](success: (AA) ⇒ X, failure: (EE) ⇒ \/[X, Validation[EE, AA]]): X

    Spin in tail-position on the failure value of this validation.

    Spin in tail-position on the failure value of this validation.

    Definition Classes
    Validation
  40. def loopSuccess[EE >: E, AA >: A, X](success: (AA) ⇒ \/[X, Validation[EE, AA]], failure: (EE) ⇒ X): X

    Spin in tail-position on the success value of this validation.

    Spin in tail-position on the success value of this validation.

    Definition Classes
    Validation
  41. def map[B](f: (A) ⇒ B): Validation[E, B]

    Map on the success of this validation.

    Map on the success of this validation.

    Definition Classes
    Validation
  42. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  45. def orElse[EE >: E, AA >: A](x: ⇒ Validation[EE, AA]): Validation[EE, AA]

    Return this if it is a success, otherwise, return the given value.

    Return this if it is a success, otherwise, return the given value. Alias for |||

    Definition Classes
    Validation
  46. def show[EE >: E, AA >: A](implicit SE: Show[EE], SA: Show[AA]): Cord

    Show for a validation value.

    Show for a validation value.

    Definition Classes
    Validation
  47. def swap: Validation[A, E]

    Flip the failure/success values in this validation.

    Flip the failure/success values in this validation. Alias for unary_~

    Definition Classes
    Validation
  48. def swapped[EE, AA](k: (Validation[A, E]) ⇒ Validation[AA, EE]): Validation[EE, AA]

    Run the given function on this swapped value.

    Run the given function on this swapped value. Alias for ~

    Definition Classes
    Validation
  49. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  50. def toEither: Either[E, A]

    Convert to a core scala.Either at your own peril.

    Convert to a core scala.Either at your own peril.

    Definition Classes
    Validation
  51. def toList: List[A]

    Return an empty list or list with one element on the success of this validation.

    Return an empty list or list with one element on the success of this validation.

    Definition Classes
    Validation
  52. def toOption: Option[A]

    Return an empty option or option with one element on the success of this validation.

    Return an empty option or option with one element on the success of this validation. Useful to sweep errors under the carpet.

    Definition Classes
    Validation
  53. def toStream: Stream[A]

    Return an empty stream or stream with one element on the success of this validation.

    Return an empty stream or stream with one element on the success of this validation.

    Definition Classes
    Validation
  54. def toValidationNel[EE >: E, AA >: A]: ValidationNel[EE, AA]

    Wraps the failure value in a scalaz.NonEmptyList

    Wraps the failure value in a scalaz.NonEmptyList

    Definition Classes
    Validation
  55. def traverse[G[+_], B](f: (A) ⇒ G[B])(implicit arg0: Applicative[G]): G[Validation[E, B]]

    Traverse on the success of this validation.

    Traverse on the success of this validation.

    Definition Classes
    Validation
  56. def unary_~: Validation[A, E]

    Flip the failure/success values in this validation.

    Flip the failure/success values in this validation. Alias for swap

    Definition Classes
    Validation
  57. def valueOr[AA >: A](x: (E) ⇒ AA): AA

    Return the success value of this validation or run the given function on the failure.

    Return the success value of this validation or run the given function on the failure.

    Definition Classes
    Validation
  58. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. def |[AA >: A](x: ⇒ AA): AA

    Return the success value of this validation or the given default if failure.

    Return the success value of this validation or the given default if failure. Alias for getOrElse

    Definition Classes
    Validation
  62. def |||[EE >: E, AA >: A](x: ⇒ Validation[EE, AA]): Validation[EE, AA]

    Return this if it is a success, otherwise, return the given value.

    Return this if it is a success, otherwise, return the given value. Alias for orElse

    Definition Classes
    Validation
  63. def ~[EE, AA](k: (Validation[A, E]) ⇒ Validation[AA, EE]): Validation[EE, AA]

    Run the given function on this swapped value.

    Run the given function on this swapped value. Alias for swapped

    Definition Classes
    Validation

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Validation[E, A]

Inherited from AnyRef

Inherited from Any

Ungrouped