Object/Trait

play.api.libs.json

OWrites

Related Docs: trait OWrites | package json

Permalink

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
Visibility
  1. Public
  2. All

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 apply[A](f: (A) ⇒ JsObject): OWrites[A]

    Permalink
  5. final def asInstanceOf[T0]: T0

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

    Permalink
    Definition Classes
    PathWrites
  7. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink

    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
  24. def of[A](implicit w: Writes[A]): Writes[A]

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

    Permalink

    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
  26. def pruned[A](implicit w: Writes[A]): Writes[A]

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

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

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

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

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

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

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

    Permalink

    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

  34. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    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