Packages

case class Valid[A](value: A) extends Validated[A] with Product with Serializable

A valid value of type A

Source
Validated.scala
Linear Supertypes
Serializable, Product, Equals, Validated[A], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Valid
  2. Serializable
  3. Product
  4. Equals
  5. Validated
  6. AnyRef
  7. Any
Implicitly
  1. by StringFormat
  2. by Ensuring
  3. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Valid(value: A)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ->[B](y: B): (Valid[A], B)
    Implicit
    This member is added by an implicit conversion from Valid[A] toArrowAssoc[Valid[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def ensuring(cond: (Valid[A]) => Boolean, msg: => Any): Valid[A]
    Implicit
    This member is added by an implicit conversion from Valid[A] toEnsuring[Valid[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  8. def ensuring(cond: (Valid[A]) => Boolean): Valid[A]
    Implicit
    This member is added by an implicit conversion from Valid[A] toEnsuring[Valid[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: Boolean, msg: => Any): Valid[A]
    Implicit
    This member is added by an implicit conversion from Valid[A] toEnsuring[Valid[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean): Valid[A]
    Implicit
    This member is added by an implicit conversion from Valid[A] toEnsuring[Valid[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def flatMap[B](f: (A) => Validated[B]): Validated[B]

    Subsequently validates this valid value.

    Subsequently validates this valid value. An invalid value is returned as it is.

    Definition Classes
    Validated
  14. def fold[B](valid: (A) => B, invalid: (Seq[String]) => B): B

    Transforms this validated value into a value of type B

    Transforms this validated value into a value of type B

    Definition Classes
    Validated
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Valid[A] toStringFormat[Valid[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def map[B](f: (A) => B): Validated[B]

    Transforms a valid value of type A into a valid value of type B.

    Transforms a valid value of type A into a valid value of type B. An invalid value is returned as it is.

    Definition Classes
    Validated
  19. def mapErrors(f: (Seq[String]) => Seq[String]): Validated[A]

    Transforms the error list of an invalid value.

    Transforms the error list of an invalid value. A valid value is returned as it is.

    Definition Classes
    Validated
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def productElementNames: Iterator[String]
    Definition Classes
    Product
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toEither: Either[Seq[String], A]

    Transforms this Validated[A] value into an Either[Seq[String], A] value.

    Transforms this Validated[A] value into an Either[Seq[String], A] value.

    Definition Classes
    Validated
  26. val value: A
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. def zip[A0 >: A, B](that: Validated[B])(implicit tupler: Tupler[A0, B]): Validated[Out]

    Tuples together two validated values and tries to return a flat tuple instead of nested tuples.

    Tuples together two validated values and tries to return a flat tuple instead of nested tuples. Also strips out Unit values in the tuples.

    If this and that are both invalid values, this operation returns an Invalid value containing both this error messages and that error messages.

    Definition Classes
    Validated
    See also

    Tupler

Deprecated Value Members

  1. def [B](y: B): (Valid[A], B)
    Implicit
    This member is added by an implicit conversion from Valid[A] toArrowAssoc[Valid[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Validated[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringFormat fromValid[A] to StringFormat[Valid[A]]

Inherited by implicit conversion Ensuring fromValid[A] to Ensuring[Valid[A]]

Inherited by implicit conversion ArrowAssoc fromValid[A] to ArrowAssoc[Valid[A]]

Ungrouped