Packages

c

play.api.libs.json

JsSuccess

case class JsSuccess[T](value: T, path: JsPath = JsPath()) extends JsResult[T] with Product with Serializable

The result for a successful parsing.

Source
JsResult.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, JsResult[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsSuccess
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. JsResult
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JsSuccess(value: T, path: JsPath = JsPath())

Type Members

  1. final class WithFilter extends AnyRef
    Definition Classes
    JsResult

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. def asEither: Either[Seq[(JsPath, Seq[JsonValidationError])], T]

    Returns either the result errors (at Left), or the successful value (at Right).

    Returns either the result errors (at Left), or the successful value (at Right).

    Definition Classes
    JsSuccessJsResult
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def asOpt: Option[T]

    Transforms this result either Some option with the successful value, or as None in case of JSON error.

    Transforms this result either Some option with the successful value, or as None in case of JSON error.

    Definition Classes
    JsSuccessJsResult
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. def collect[B](otherwise: JsonValidationError)(p: PartialFunction[T, B]): JsResult[B]
    Definition Classes
    JsResult
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def filter(otherwise: JsError)(p: (T) ⇒ Boolean): JsResult[T]
    Definition Classes
    JsResult
  11. def filter(p: (T) ⇒ Boolean): JsResult[T]
    Definition Classes
    JsResult
  12. def filterNot(p: (T) ⇒ Boolean): JsResult[T]
    Definition Classes
    JsResult
  13. def filterNot(error: JsError)(p: (T) ⇒ Boolean): JsResult[T]
    Definition Classes
    JsResult
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def flatMap[U](f: (T) ⇒ JsResult[U]): JsResult[U]

    If this result is successful, applies the function f on the parsed value.

    If this result is successful, applies the function f on the parsed value.

    Definition Classes
    JsSuccessJsResult
  16. def fold[U](invalid: (Seq[(JsPath, Seq[JsonValidationError])]) ⇒ U, valid: (T) ⇒ U): U

    Either applies the invalid function if this result is an error, or applies the valid function on the successful value.

    Either applies the invalid function if this result is an error, or applies the valid function on the successful value.

    Definition Classes
    JsSuccessJsResult
  17. def foreach(f: (T) ⇒ Unit): Unit

    If this result is successful, applies the function f on the parsed value.

    If this result is successful, applies the function f on the parsed value.

    Definition Classes
    JsSuccessJsResult
  18. def get: T

    Not recommended

    Not recommended

    Definition Classes
    JsSuccessJsResult
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def getOrElse[U >: T](t: ⇒ U): U

    Either returns the successful value, or the value from t.

    Either returns the successful value, or the value from t.

    Definition Classes
    JsSuccessJsResult
  21. val isError: Boolean
    Definition Classes
    JsSuccessJsResult
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. val isSuccess: Boolean
    Definition Classes
    JsSuccessJsResult
  24. def map[U](f: (T) ⇒ U): JsResult[U]

    If this result is successful, applies the function f on the parsed value.

    If this result is successful, applies the function f on the parsed value.

    Definition Classes
    JsSuccessJsResult
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def orElse[U >: T](t: ⇒ JsResult[U]): JsResult[U]

    Either returns this result if successful, or the result from t.

    Either returns this result if successful, or the result from t.

    Definition Classes
    JsSuccessJsResult
  29. val path: JsPath
  30. def recover[U >: T](errManager: PartialFunction[JsError, U]): JsResult[U]

    If this result is not successful, recovers the errors with the given function.

    If this result is not successful, recovers the errors with the given function.

    Definition Classes
    JsSuccessJsResult
  31. def recoverTotal[U >: T](errManager: (JsError) ⇒ U): U

    If this result is not successful, recovers the errors with the given function.

    If this result is not successful, recovers the errors with the given function.

    Definition Classes
    JsSuccessJsResult
  32. def repath(path: JsPath): JsResult[T]

    Updates the JSON path

    Updates the JSON path

    Definition Classes
    JsSuccessJsResult
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. val value: T
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  38. def withFilter(p: (T) ⇒ Boolean): WithFilter
    Definition Classes
    JsResult

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from JsResult[T]

Inherited from AnyRef

Inherited from Any

Ungrouped