ObjectDecoder

oxygen.json.JsonDecoder.ObjectDecoder
trait ObjectDecoder[A] extends JsonDecoder[A]

Attributes

Graph
Supertypes
trait JsonDecoder[A]
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def decodeJsonObjectAST(ast: Obj): Either[JsonError, A]

Concrete methods

final override def decodeJsonAST(ast: Json): Either[JsonError, A]

Attributes

Definition Classes

Inherited methods

final def <>[B >: A](that: JsonDecoder[B]): JsonDecoder[B]

Attributes

Inherited from:
JsonDecoder
final def decodeJsonString(string: String): Either[JsonError, A]

Attributes

Inherited from:
JsonDecoder
final def map[B](f: A => B): JsonDecoder[B]

Attributes

Inherited from:
JsonDecoder
final def mapAttempt[B](f: A => B)(using typeTag: TypeTag[B]): JsonDecoder[B]

Attributes

Inherited from:
JsonDecoder
final def mapJsonInput(f: PartialFunction[Json, Json]): JsonDecoder[A]

Attributes

Inherited from:
JsonDecoder
final def mapOrFail[B](f: A => Either[String, B]): JsonDecoder[B]

Attributes

Inherited from:
JsonDecoder

Inherited fields

val onMissingFromObject: Option[A]

Attributes

Inherited from:
JsonDecoder