trait PathReads extends AnyRef
- Source
- JsConstraints.scala
- Alphabetic
- By Inheritance
- PathReads
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def at[A](path: JsPath)(implicit reads: Reads[A]): Reads[A]
- def jsCopyTo[A <: JsValue](path: JsPath)(reads: Reads[A]): [JsObject]
- def jsPick[A <: JsValue](path: JsPath)(implicit reads: Reads[A]): Reads[A]
- def jsPickBranch[A <: JsValue](path: JsPath)(implicit reads: Reads[A]): [JsObject]
- def jsPrune(path: JsPath): [JsObject]
- def jsPut(path: JsPath, a: => JsValue): [JsObject]
- def jsUpdate[A <: JsValue](path: JsPath)(reads: Reads[A]): [JsObject]
- def nullable[A](path: JsPath)(implicit reads: Reads[A]): Reads[Option[A]]
Reads a Option[T] search optional or nullable field at JsPath (field not found or null is None and other cases are Error).
Reads a Option[T] search optional or nullable field at JsPath (field not found or null is None and other cases are Error).
It runs through JsValue following all JsPath nodes on JsValue: - If any node in JsPath is not found => returns None - If any node in JsPath is found with value "null" => returns None - If the entire path is found => applies implicit Reads[T]
- def nullableWithDefault[A](path: JsPath, defaultValue: => Option[A])(implicit reads: Reads[A]): Reads[Option[A]]
Reads a Option[T] search nullable field at JsPath (null is None and other cases are Error).
Reads a Option[T] search nullable field at JsPath (null is None and other cases are Error).
It runs through JsValue following all JsPath nodes on JsValue: - If any node in JsPath is not found => returns default value - If the last node in JsPath is found with value "null" => returns None - If the entire path is found => applies implicit Reads[T]
- def required(path: JsPath)(implicit reads: [JsValue]): [JsValue]
- def withDefault[A](path: JsPath, defaultValue: => A)(implicit reads: Reads[A]): Reads[A]