play.api.libs.json

OWrites

object OWrites extends PathWrites with ConstraintWrites

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OWrites
  2. ConstraintWrites
  3. PathWrites
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply[A](f: (A) ⇒ JsObject): OWrites[A]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def at[A](path: JsPath)(implicit wrs: Writes[A]): OWrites[A]

    Definition Classes
    PathWrites
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  10. implicit val contravariantfunctorOWrites: ContravariantFunctor[OWrites]

  11. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  13. implicit val functionalCanBuildOWrites: FunctionalCanBuild[OWrites]

  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. def jsPick(path: JsPath): Writes[JsValue]

    Definition Classes
    PathWrites
  18. def jsPickBranch(path: JsPath): OWrites[JsValue]

    Definition Classes
    PathWrites
  19. def jsPickBranchUpdate(path: JsPath, wrs: OWrites[JsValue]): OWrites[JsValue]

    Definition Classes
    PathWrites
  20. def list[A](implicit writes: Writes[A]): Writes[List[A]]

    Definition Classes
    ConstraintWrites
  21. def map[A](implicit writes: Writes[A]): OWrites[Map[String, A]]

    Definition Classes
    ConstraintWrites
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  25. def nullable[A](path: JsPath)(implicit wrs: Writes[A]): OWrites[Option[A]]

    writes a optional field in given JsPath : if None, doesn't write field at all.

    writes a optional field in given JsPath : if None, doesn't write field at all. Please note we do not write "null" but simply omit the field when None If you want to write a "null", use ConstraintWrites.optionWithNull[A]

    Definition Classes
    PathWrites
  26. def of[A](implicit w: Writes[A]): Writes[A]

    Definition Classes
    ConstraintWrites
  27. def optionWithNull[A](implicit wa: Writes[A]): Writes[Option[A]]

    Pure Option Writer[T] which writes "null" when None which is different from JsPath.writeNullable which omits the field when None

    Pure Option Writer[T] which writes "null" when None which is different from JsPath.writeNullable which omits the field when None

    Definition Classes
    ConstraintWrites
  28. def pruned[A](implicit w: Writes[A]): Writes[A]

    Definition Classes
    ConstraintWrites
  29. def pure[A](fixed: ⇒ A)(implicit wrs: Writes[A]): Writes[JsValue]

    Definition Classes
    ConstraintWrites
  30. def pure[A](path: JsPath, fixed: ⇒ A)(implicit wrs: Writes[A]): OWrites[JsValue]

    Definition Classes
    PathWrites
  31. def seq[A](implicit writes: Writes[A]): Writes[Seq[A]]

    Definition Classes
    ConstraintWrites
  32. def set[A](implicit writes: Writes[A]): Writes[Set[A]]

    Definition Classes
    ConstraintWrites
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. def toString(): String

    Definition Classes
    AnyRef → Any
  35. def transform[A](w: OWrites[A])(f: (A, JsObject) ⇒ JsObject): OWrites[A]

    Transforms the resulting JsObject using the given function, which is also applied with the initial input.

    Transforms the resulting JsObject using the given function, which is also applied with the initial input. def transform(transformer: (A, JsObject) => JsObject): OWrites[A] = OWrites[A] { a => transformer(a, this.writes(a)) }

    w

    the initial writer

    f

    the transformer function

  36. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from ConstraintWrites

Inherited from PathWrites

Inherited from AnyRef

Inherited from Any

Ungrouped