Object

play.api.libs.json.EnvReads

IsoDateReads

Related Doc: package EnvReads

Permalink

object IsoDateReads extends Reads[Date]

ISO 8601 Reads

Source
EnvReads.scala
Linear Supertypes
Reads[Date], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IsoDateReads
  2. Reads
  3. AnyRef
  4. 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. val WithMillis: Regex

    Permalink
  5. val WithMillisAndTz: Regex

    Permalink
  6. val WithTz: Regex

    Permalink
  7. def andThen[B](rb: Reads[B])(implicit witness: <:<[Date, JsValue]): Reads[B]

    Permalink
    Definition Classes
    Reads
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def collect[B](error: JsonValidationError)(f: PartialFunction[Date, B]): Reads[B]

    Permalink
    Definition Classes
    Reads
  11. def compose[B <: JsValue](rb: Reads[B]): Reads[Date]

    Permalink
    Definition Classes
    Reads
  12. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def filter(error: JsonValidationError)(f: (Date) ⇒ Boolean): Reads[Date]

    Permalink
    Definition Classes
    Reads
  15. def filter(f: (Date) ⇒ Boolean): Reads[Date]

    Permalink
    Definition Classes
    Reads
  16. def filterNot(error: JsonValidationError)(f: (Date) ⇒ Boolean): Reads[Date]

    Permalink
    Definition Classes
    Reads
  17. def filterNot(f: (Date) ⇒ Boolean): Reads[Date]

    Permalink
    Definition Classes
    Reads
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def flatMap[B](f: (Date) ⇒ Reads[B]): Reads[B]

    Permalink
    Definition Classes
    Reads
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def map[B](f: (Date) ⇒ B): Reads[B]

    Permalink

    Create a new Reads which maps the value produced by this Reads.

    Create a new Reads which maps the value produced by this Reads.

    B

    The type of the value produced by the new Reads.

    f

    the function applied on the result of the current instance, if successful

    Definition Classes
    Reads
  24. val millis: String

    Permalink
  25. val millisAndTz: String

    Permalink
  26. val mini: String

    Permalink
  27. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. def orElse(v: Reads[Date]): Reads[Date]

    Permalink

    Creates a new Reads, based on this one, which first executes this Reads' logic then, if this Reads resulted in a JsError, runs the second Reads on the JsValue.

    Creates a new Reads, based on this one, which first executes this Reads' logic then, if this Reads resulted in a JsError, runs the second Reads on the JsValue.

    v

    The Reads to run if this one gets a JsError.

    returns

    A new Reads with the updated behavior.

    Definition Classes
    Reads
  31. def reads(json: JsValue): JsResult[Date]

    Permalink

    Convert the JsValue into a A

    Convert the JsValue into a A

    Definition Classes
    IsoDateReadsReads
  32. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  34. val tz: String

    Permalink
  35. final def wait(): Unit

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

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

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

Inherited from Reads[Date]

Inherited from AnyRef

Inherited from Any

Ungrouped