JsonKind
enum JsonKind extends int32import JsonKind from Wax;JSON representation kinds. Int32, Int64, Float, and Double are all numeric, while Null, Boolean, String, Object, and Array identify their corresponding JSON categories.
Members
Nullcase
case Null = 0Booleancase
case Boolean = 3Int32case
case Int32 = 4Int64case
case Int64 = 5Floatcase
case Float = 6Doublecase
case Double = 7Stringcase
case String = 8Objectcase
case Object = 9Arraycase
case Array = 10IsNumbermethod
public fn IsNumber() : boolTests for Int32, Int64, Float, or Double.
CompareTomethod
public fn CompareTo(JsonKind other) : int32Provided by the compiler.
Equalsmethod
public fn Equals(JsonKind other) : boolProvided by the compiler.
GetHashCodemethod
public fn GetHashCode() : uint32Provided by the compiler.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.