JsonValue

soidc.jwt.codec.JsonValue
See theJsonValue companion trait
object JsonValue

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
JsonValue.type

Members list

Type members

Classlikes

final case class Arr(value: List[JsonValue]) extends JsonValue

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait JsonValue
class Object
trait Matchable
class Any
Show all
final case class Bool(value: Boolean) extends JsonPrimitive

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait JsonValue
class Object
trait Matchable
class Any
Show all
case object JsonNull extends JsonPrimitive

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait JsonValue
class Object
trait Matchable
class Any
Show all
Self type
JsonNull.type
sealed trait JsonPrimitive extends JsonValue

Attributes

Supertypes
trait JsonValue
class Object
trait Matchable
class Any
Known subtypes
class Bool
object JsonNull
class Num
class Str
final case class Num(value: BigDecimal) extends JsonPrimitive

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait JsonValue
class Object
trait Matchable
class Any
Show all
final case class Obj(value: Map[String, JsonValue]) extends JsonValue

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait JsonValue
class Object
trait Matchable
class Any
Show all
final case class Str(value: String) extends JsonPrimitive

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait JsonValue
class Object
trait Matchable
class Any
Show all

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def arr[A : ToJson](v: A*): JsonValue
def bool(value: Boolean): JsonValue
def num(value: BigDecimal): JsonValue
def obj[A : ToJson](v: (String, A)*): JsonValue
def str(value: String): JsonValue

Concrete fields

val emptyArr: Arr
val emptyObj: Obj