A utility class providing constants. Specifies a mode for parsing JSON simple values (null, boolean, number, integer, and string) while loading JSON. Such a mode does not affect parsing of date-time values.
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.
STRICT
public 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.
length
public static final int length
getName(int jsonSimpleValueParseMode)
public static String getName(int jsonSimpleValueParseMode)
Parameters:
Parameter
Type
Description
jsonSimpleValueParseMode
int
Returns:
java.lang.String
toString(int jsonSimpleValueParseMode)
public static String toString(int jsonSimpleValueParseMode)
Parameters:
Parameter
Type
Description
jsonSimpleValueParseMode
int
Returns:
java.lang.String
fromName(String jsonSimpleValueParseModeName)
public static int fromName(String jsonSimpleValueParseModeName)
Parameters:
Parameter
Type
Description
jsonSimpleValueParseModeName
java.lang.String
Returns:
int
getValues()
public static int[] getValues()
Returns:
int[]
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.