public class JsonSimpleValueParseMode
Field Summary | ||
---|---|---|
static final int | LOOSE | |
Specifies the mode where types of JSON simple values are determined upon parsing of their string representations.
For example, the type of 'prop' from the JSON snippet '{ prop: "123" }' is determined as integer in this mode.
|
||
static final int | STRICT | |
Specifies the mode where types of JSON simple values are determined from JSON notation itself.
For example, the type of 'prop' from the JSON snippet '{ prop: "123" }' is determined as string in this mode.
|
public static final int LOOSE
public static final int STRICT