Trait/Object

play.api.libs.json

JsResult

Related Docs: object JsResult | package json

Permalink

sealed trait JsResult[+A] extends AnyRef

Self Type
JsResult[A]
Source
JsResult.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JsResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. final class WithFilter extends AnyRef

    Permalink

Abstract Value Members

  1. abstract def get: A

    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. def asEither: Product with Serializable with Either[Seq[(JsPath, Seq[ValidationError])], A]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def asOpt: Option[A]

    Permalink
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def collect[B](otherwise: ValidationError)(p: PartialFunction[A, B]): JsResult[B]

    Permalink
  9. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def filter(otherwise: JsError)(p: (A) ⇒ Boolean): JsResult[A]

    Permalink
  12. def filter(p: (A) ⇒ Boolean): JsResult[A]

    Permalink
  13. def filterNot(p: (A) ⇒ Boolean): JsResult[A]

    Permalink
  14. def filterNot(error: JsError)(p: (A) ⇒ Boolean): JsResult[A]

    Permalink
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def flatMap[X](f: (A) ⇒ JsResult[X]): JsResult[X]

    Permalink
  17. def fold[X](invalid: (Seq[(JsPath, Seq[ValidationError])]) ⇒ X, valid: (A) ⇒ X): X

    Permalink
  18. def foreach(f: (A) ⇒ Unit): Unit

    Permalink
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def getOrElse[AA >: A](t: ⇒ AA): AA

    Permalink
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. def isError: Boolean

    Permalink
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def isSuccess: Boolean

    Permalink
  25. def map[X](f: (A) ⇒ X): JsResult[X]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  29. def orElse[AA >: A](t: ⇒ JsResult[AA]): JsResult[AA]

    Permalink
  30. def recover[AA >: A](errManager: PartialFunction[JsError, AA]): JsResult[AA]

    Permalink
  31. def recoverTotal[AA >: A](errManager: (JsError) ⇒ AA): AA

    Permalink
  32. def repath(path: JsPath): JsResult[A]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. def withFilter(p: (A) ⇒ Boolean): WithFilter

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped