JSONPrimitive.NodeTypeEnum Enum
Enum representing types of primitive nodes.
enum JSONPrimitive.NodeTypeEnum
Constants
JSON_OBJECT = 0 | Object (Object n JSON is basically dictionary) |
JSON_ARRAY = 1 | Array |
JSON_STRING = 2 | String |
JSON_INTEGER = 3 | Integer (All integers are 64 bit) |
JSON_REAL = 4 | Double |
JSON_TRUE = 5 | True. The library we use does not really have concept of Boolean but it has True and False as separate primitives. |
JSON_FALSE = 6 | False. The library we use does not really have concept of Boolean but it has True and False as separate primitives. |
JSON_NULL = 7 | Null (same as nil in Xojo) |