StringStringMapFormat

io.cequence.openaiscala.JsonUtil$.StringStringMapFormat$
object StringStringMapFormat extends Format[Map[String, String]]

Attributes

Graph
Supertypes
trait Format[Map[String, String]]
trait Reads[Map[String, String]]
trait Writes[Map[String, String]]
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Value members

Concrete methods

override def reads(json: JsValue): JsResult[Map[String, String]]

Convert the JsValue into a A

Convert the JsValue into a A

Attributes

Definition Classes
Reads
override def writes(o: Map[String, String]): JsValue

Converts the A value into a JsValue.

Converts the A value into a JsValue.

Attributes

Definition Classes
Writes

Inherited methods

def andThen[B](rb: Reads[B])(implicit witness: Map[String, String] <:< JsValue): Reads[B]

Attributes

Inherited from:
Reads
def bimap[B](readsMap: Map[String, String] => B, writesContramap: B => Map[String, String]): Format[B]

Maps reads and writes operations between the types A and B, using the given functions.

Maps reads and writes operations between the types A and B, using the given functions.

Attributes

readsMap

the function applied to the read A value

writesContraMap

the function to produce a A from Bbefore writing

Inherited from:
Format
def collect[B](error: JsonValidationError)(f: PartialFunction[Map[String, String], B]): Reads[B]

Attributes

Inherited from:
Reads
def composeWith[B <: JsValue](rb: Reads[B]): Reads[A]

Creates a new Reads, which first passes the input JSON to rb, and then it executes this Reads on the pre-processed JSON (if rb has successfully handled the input JSON).

Creates a new Reads, which first passes the input JSON to rb, and then it executes this Reads on the pre-processed JSON (if rb has successfully handled the input JSON).

Attributes

Inherited from:
Reads
def contramap[B](f: B => Map[String, String]): Writes[B]

Returns a new instance that first converts a B value to a A one, before converting this A value into a JsValue.

Returns a new instance that first converts a B value to a A one, before converting this A value into a JsValue.

Attributes

Inherited from:
Writes
def filter(error: JsonValidationError)(f: Map[String, String] => Boolean): Reads[A]

Attributes

Inherited from:
Reads
def filter(f: Map[String, String] => Boolean): Reads[A]

Attributes

Inherited from:
Reads
def filterNot(error: JsonValidationError)(f: Map[String, String] => Boolean): Reads[A]

Attributes

Inherited from:
Reads
def filterNot(f: Map[String, String] => Boolean): Reads[A]

Attributes

Inherited from:
Reads
def flatMap[B](f: Map[String, String] => Reads[B]): Reads[B]

Attributes

Inherited from:
Reads
def flatMapResult[B](f: Map[String, String] => JsResult[B]): Reads[B]

Creates a new Reads, which transforms the successful result from the current instance using the given function.

Creates a new Reads, which transforms the successful result from the current instance using the given function.

Attributes

f

the function applied on the successful A value

final class Foo private(val code: String) extends AnyVal
val A = new Foo("A")
val B = new Foo("B")
import play.api.libs.json.Reads
val r: Reads[Foo] = implicitly[Reads[String]].flatMapResult {
 case "A" => JsSuccess(A)
 case "B" => JsSuccess(B)
 case _   => JsError("error.expected.foo")
}
Inherited from:
Reads
def map[B](f: Map[String, String] => B): Reads[B]

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

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

Attributes

B

The type of the value produced by the new Reads.

f

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

Inherited from:
Reads
def narrow[B <: Map[String, String]]: Writes[B]

Narrows to any B super-type of A.

Narrows to any B super-type of A.

Attributes

Inherited from:
Writes
def orElse(v: Reads[Map[String, String]]): Reads[A]

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.

Attributes

v

the Reads to run if this one gets a JsError

Returns:

A new Reads with the updated behavior.

Inherited from:
Reads
def preprocess(f: PartialFunction[JsValue, JsValue]): Reads[A]

Creates a new Reads, which first transforms the input JSON using the given tranformer, and then it executes this Reads on the pre-processed JSON.

Creates a new Reads, which first transforms the input JSON using the given tranformer, and then it executes this Reads on the pre-processed JSON.

Attributes

transformer

the function to pre-process the input JSON

Inherited from:
Reads
def transform(transformer: Writes[JsValue]): Writes[A]

Transforms the resulting JsValue using a Writes[JsValue].

Transforms the resulting JsValue using a Writes[JsValue].

Attributes

Inherited from:
Writes
def transform(transformer: JsValue => JsValue): Writes[A]

Transforms the resulting JsValue using transformer function.

Transforms the resulting JsValue using transformer function.

Attributes

Inherited from:
Writes
def widen[B >: Map[String, String]]: 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]

Attributes

Inherited from:
Reads

Deprecated and Inherited methods

def compose[B <: JsValue](rb: Reads[B]): Reads[A]

Attributes

Deprecated
true
Inherited from:
Reads