Packages

t

play.api.libs.json

EnvWrites

trait EnvWrites extends AnyRef

Source
EnvWrites.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EnvWrites
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait TemporalFormatter[T <: Temporal] extends AnyRef

    Typeclass to implement way of formatting of Java8 temporal types.

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. implicit val DefaultInstantWrites: Writes[Instant]

    The default typeclass to write a java.time.Instant, using '2011-12-03T10:15:30Z' format.

  5. implicit val DefaultLocalDateTimeWrites: Writes[LocalDateTime]

    The default typeclass to write a java.time.LocalDateTime, using '2011-12-03T10:15:30' format.

  6. implicit val DefaultLocalDateWrites: Writes[LocalDate]

    The default typeclass to write a java.time.LocalDate, using '2011-12-03' format.

  7. implicit val DefaultLocalTimeWrites: Writes[LocalTime]

    The default typeclass to write a java.time.LocalTime, using '10:15:30' format.

  8. implicit val DefaultOffsetDateTimeWrites: Writes[OffsetDateTime]

    The default typeclass to write a java.time.OffsetDateTime, using '2011-12-03T10:15:30+02:00' format.

  9. implicit val DefaultZonedDateTimeWrites: Writes[ZonedDateTime]

    The default typeclass to write a java.time.ZonedDateTime, using '2011-12-03T10:15:30+01:00[Europe/Paris]' format.

  10. val InstantEpochMilliWrites: Writes[Instant]

    Serializer for java.time.Instant as JSON number.

    Serializer for java.time.Instant as JSON number. The number of milliseconds since epoch is used.

    import java.time.Instant
    import play.api.libs.json.Writes
    
    implicit val inWrites: Writes[Instant] = Writes.InstantEpochMilliWrites
  11. val LocalDateEpochMilliWrites: Writes[LocalDate]

    Serializer for java.time.LocalDate as JSON number.

    Serializer for java.time.LocalDate as JSON number. The number of milliseconds since epoch is used.

    import java.time.LocalDate
    import play.api.libs.json.Writes
    
    implicit val ldnWrites: Writes[LocalDate] =
      Writes.LocalDateEpochMilliWrites
  12. val LocalDateTimeEpochMilliWrites: Writes[LocalDateTime]

    Serializer for java.time.LocalDateTime as JSON number.

    Serializer for java.time.LocalDateTime as JSON number. The number of milliseconds since epoch is used.

    import java.time.LocalDateTime
    import play.api.libs.json.Writes
    
    implicit val ldtnWrites = Writes.LocalDateTimeEpochMilliWrites
  13. val LocalTimeNanoOfDayWrites: Writes[LocalTime]

    Serializer for java.time.LocalTime as JSON number.

    Serializer for java.time.LocalTime as JSON number. The nano of day is written.

    import java.time.LocalTime
    import play.api.libs.json.Writes
    
    implicit val ltnWrites = Writes.LocalTimeNanoOfDayWrites
  14. implicit val ZoneIdWrites: Writes[ZoneId]

    Serializer for java.time.ZoneId as JSON string.

  15. val ZonedDateTimeEpochMilliWrites: Writes[ZonedDateTime]

    Serializer for java.time.ZonedDateTime as JSON number.

    Serializer for java.time.ZonedDateTime as JSON number. The number of milliseconds since epoch is used.

    import java.time.ZonedDateTime
    import play.api.libs.json.Writes
    
    implicit val zdtnWrites = Writes.ZonedDateTimeEpochMilliWrites
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. val javaDurationMillisWrites: Writes[Duration]

    Serializer of Java Duration as a number of milliseconds.

  25. implicit val javaDurationWrites: Writes[Duration]

    Serializer of Java Duration using ISO representation (e.g.

    Serializer of Java Duration using ISO representation (e.g. PT1S for 1 second).

  26. implicit val javaPeriodWrites: Writes[Period]

    Serializer of Java Period using ISO representation (e.g.

    Serializer of Java Period using ISO representation (e.g. P2D for 2 days).

  27. implicit def jsonNodeWrites[T <: JsonNode]: Writes[T]

    Serializer for Jackson JsonNode

  28. val localeObjectWrites: OWrites[Locale]

    Serializer for a Locale using a object representation

  29. implicit val localeWrites: Writes[Locale]

    Serializer for a Locale using the IETF BCP 47 string representation

  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def temporalWrites[A <: Temporal, B](formatting: B)(implicit f: (B) => TemporalFormatter[A]): Writes[A]

    Serializer for Java8 temporal types (e.g.

    Serializer for Java8 temporal types (e.g. java.time.LocalDateTime) to be written as JSON string.

    A

    the Java8 temporal type to be considered: LocalDateTime, ZonedDateTime, Instant

    B

    Type of formatting argument

    formatting

    an argument to instantiate formatter

    import java.time.LocalDateTime
    import java.time.format.DateTimeFormatter
    
    import play.api.libs.json.Writes
    
    implicit val w: Writes[LocalDateTime] =
      Writes.temporalWrites[LocalDateTime, DateTimeFormatter](
        DateTimeFormatter.ISO_LOCAL_DATE_TIME)
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. object TemporalFormatter

    Formatting companion

Deprecated Value Members

  1. def jodaDateWrites(pattern: String): Writes[DateTime]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) Include play-json-joda as a dependency and use JodaWrites.jodaDateWrites

  2. def jodaLocalDateWrites(pattern: String): Writes[LocalDate]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) Include play-json-joda as a dependency and use JodaWrites.jodaLocalDateWrites

  3. def jodaLocalTimeWrites(pattern: String): Writes[LocalTime]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) Include play-json-joda as a dependency and use JodaWrites.jodaLocalTimeWrites

  4. object DefaultJodaDateWrites extends Writes[DateTime]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) Include play-json-joda as a dependency and use JodaWrites.JodaDateNumberWrites

  5. object DefaultJodaLocalDateWrites extends Writes[LocalDate]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) Include play-json-joda as a dependency and use JodaWrites.DefaultJodaLocalDateWrites

  6. object DefaultJodaLocalTimeWrites extends Writes[LocalTime]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) Include play-json-joda as a dependency and use JodaWrites.DefaultJodaLocalTimeWrites

  7. object JsonNodeWrites extends Writes[JsonNode]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) Use jsonNodeWrites

Inherited from AnyRef

Inherited from Any

Ungrouped