implicit object LongReads extends Reads[Long]
- Alphabetic
- By Inheritance
- LongReads
- Reads
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def andThen[B](rb: Reads[B])(implicit witness: <:<[Long, JsValue]): Reads[B]
- Definition Classes
- Reads
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def collect[B](error: JsonValidationError)(f: PartialFunction[Long, B]): Reads[B]
- Definition Classes
- Reads
- def composeWith[B <: JsValue](rb: Reads[B]): Reads[Long]
Creates a new
Reads
, which first passes the input JSON torb
, and then it executes thisReads
on the pre-processed JSON (ifrb
has successfully handled the input JSON).Creates a new
Reads
, which first passes the input JSON torb
, and then it executes thisReads
on the pre-processed JSON (ifrb
has successfully handled the input JSON).- Definition Classes
- Reads
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def filter(error: JsonValidationError)(f: (Long) => Boolean): Reads[Long]
- Definition Classes
- Reads
- def filter(f: (Long) => Boolean): Reads[Long]
- Definition Classes
- Reads
- def filterNot(error: JsonValidationError)(f: (Long) => Boolean): Reads[Long]
- Definition Classes
- Reads
- def filterNot(f: (Long) => Boolean): Reads[Long]
- Definition Classes
- Reads
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flatMap[B](f: (Long) => Reads[B]): Reads[B]
- Definition Classes
- Reads
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[B](f: (Long) => B): Reads[B]
Create a new
Reads
which maps the value produced by thisReads
.Create a new
Reads
which maps the value produced by thisReads
.- 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
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def orElse(v: Reads[Long]): Reads[Long]
Creates a new
Reads
, based on this one, which first executes thisReads
' logic then, if thisReads
resulted in aJsError
, runs the secondReads
on the JsValue. - def preprocess(f: PartialFunction[JsValue, JsValue]): Reads[Long]
Creates a new
Reads
, which first transforms the input JSON using the giventranformer
, and then it executes thisReads
on the pre-processed JSON.Creates a new
Reads
, which first transforms the input JSON using the giventranformer
, and then it executes thisReads
on the pre-processed JSON.- Definition Classes
- Reads
- def reads(json: JsValue): JsResult[Long]
Convert the JsValue into a A
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def widen[B >: Long]: Reads[B]
Widen this
Reads
.Widen this
Reads
.import play.api.libs.json.Reads sealed trait Animal case class Dog(name: String) extends Animal case class Cat(name: String) extends Animal def simple(r: Reads[Dog]): Reads[Animal] = r.widen[Animal]
- Definition Classes
- Reads