← Standard library

JsonType

enum JsonType extends int32
import JsonType from Wax;

The six JSON categories. Number combines all integral and floating-point representations; use JsonKind to distinguish them.

Json.wax:992

Members

Nullcase

case Null

Json.wax:993

Stringcase

case String

Json.wax:994

Numbercase

case Number

Json.wax:995

Booleancase

case Boolean

Json.wax:996

Objectcase

case Object

Json.wax:997

Arraycase

case Array

Json.wax:998

CompareTomethod

public fn CompareTo(JsonType other) : int32

Provided by the compiler.

Equalsmethod

public fn Equals(JsonType other) : bool

Provided by the compiler.

GetHashCodemethod

public fn GetHashCode() : uint32

Provided by the compiler.

ToStringmethod

public fn ToString() : string

Provided by the compiler.

ToStringBuffermethod

public fn ToStringBuffer(StringBuilder builder) : int32

Provided by the compiler.