Class

play.api.libs.json

JsDefined

Related Doc: package json

Permalink

final case class JsDefined(value: JsValue) extends AnyVal with JsLookupResult with Product with Serializable

Wrapper for JsValue to represent an existing Json value.

Source
JsLookup.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, JsLookupResult, JsReadable, AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsDefined
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. JsLookupResult
  7. JsReadable
  8. AnyVal
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JsDefined(value: JsValue)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. def as[T](implicit fjs: Reads[T]): T

    Permalink

    Tries to convert the node into a T, throwing an exception if it can't.

    Tries to convert the node into a T, throwing an exception if it can't. An implicit Reads[T] must be defined.

    Definition Classes
    JsReadable
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def asOpt[T](implicit fjs: Reads[T]): Option[T]

    Permalink

    Tries to convert the node into a T.

    Tries to convert the node into a T. An implicit Reads[T] must be defined. Any error is mapped to None

    returns

    Some[T] if it succeeds, None if it fails.

    Definition Classes
    JsReadable
  7. def get: JsValue

    Permalink
    Definition Classes
    JsLookupResult
  8. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  9. def getOrElse(v: ⇒ JsValue): JsValue

    Permalink
    Definition Classes
    JsLookupResult
  10. def isDefined: Boolean

    Permalink
    Definition Classes
    JsLookupResult
  11. def isEmpty: Boolean

    Permalink
    Definition Classes
    JsLookupResult
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def orElse(alternative: ⇒ JsLookupResult): JsLookupResult

    Permalink

    If this result is defined return this.

    If this result is defined return this. Otherwise return alternative.

    Definition Classes
    JsLookupResult
  14. def toEither: Either[JsonValidationError, JsValue]

    Permalink
    Definition Classes
    JsLookupResult
  15. def toOption: Option[JsValue]

    Permalink

    Tries to convert the node into a JsValue

    Tries to convert the node into a JsValue

    Definition Classes
    JsLookupResult
  16. def transform[A <: JsValue](rds: Reads[A]): JsResult[A]

    Permalink

    Transforms this node into a JsResult using provided Json transformer Reads[JsValue]

    Transforms this node into a JsResult using provided Json transformer Reads[JsValue]

    Definition Classes
    JsReadable
  17. def validate[A](implicit rds: Reads[A]): JsResult[A]

    Permalink

    Tries to convert the node into a JsResult[T] (Success or Error).

    Tries to convert the node into a JsResult[T] (Success or Error). An implicit Reads[T] must be defined.

    Definition Classes
    JsLookupResultJsReadable
  18. def validateOpt[A](implicit rds: Reads[A]): JsResult[Option[A]]

    Permalink

    If this result contains JsNull or is undefined, returns JsSuccess(None).

    If this result contains JsNull or is undefined, returns JsSuccess(None). Otherwise returns the result of validating as an A and wrapping the result in a Some.

    Definition Classes
    JsLookupResult
  19. val value: JsValue

    Permalink

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from JsLookupResult

Inherited from JsReadable

Inherited from AnyVal

Inherited from Any

Ungrouped