Enum Json.Type
Represents the run time type
of a JSON value.
The enum base type is
.
int
Enum members
Name | Description |
---|---|
array
|
Array of JSON values
|
Array
|
Compatibility alias - will be deprecated soon |
Bool
|
Compatibility alias - will be deprecated soon |
bool_
|
Boolean value |
Float
|
Compatibility alias - will be deprecated soon |
float_
|
64-bit floating point value |
Int
|
Compatibility alias - will be deprecated soon |
int_
|
64-bit integer value |
Null
|
Compatibility alias - will be deprecated soon |
null_
|
Null value
|
object
|
JSON object aka. dictionary from string to Json
|
Object
|
Compatibility alias - will be deprecated soon |
string
|
UTF-8 string
|
String
|
Compatibility alias - will be deprecated soon |
undefined
|
A non-existent value in a JSON object
|
Undefined
|
Compatibility alias - will be deprecated soon |
Authors
Sönke Ludwig
Copyright
© 2012-2013 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.