Json

oxygen.json.Json
See theJson companion object
sealed trait Json

Attributes

Companion
object
Experimental
true
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Arr
class Bool
object Null
class Number
class Obj
class Str
Show all

Members list

Value members

Concrete methods

final infix def merge(that: Json): Json
final def showCompact: String
final def showPretty: String
final def toJsonArray: Option[Arr]
final def toJsonBoolean: Option[Bool]
final def toJsonNull: Option[Null.type]
final def toJsonNumber: Option[Number]
final def toJsonObject: Option[Obj]
final def toJsonString: Option[Str]
final override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
final def tpe: Type