- ACCEPT_LEADING_ZERO - Static variable in class net.minidev.json.parser.JSONParser
-
Throws exception on excessive 0 leading in digits
- ACCEPT_NAN - Static variable in class net.minidev.json.parser.JSONParser
-
Parse NaN as Float.NaN
- ACCEPT_NON_QUOTE - Static variable in class net.minidev.json.parser.JSONParser
-
allow non quoted test
- ACCEPT_SIMPLE_QUOTE - Static variable in class net.minidev.json.parser.JSONParser
-
allow simple quote as String quoting char
- ACCEPT_TAILLING_DATA - Static variable in class net.minidev.json.parser.JSONParser
-
If enabled json-smart will throws exception if datas are present after
the end of the Json data.
- ACCEPT_USELESS_COMMA - Static variable in class net.minidev.json.parser.JSONParser
-
Throws exception on useless comma in object and array
- add(Object...) - Method in class net.minidev.json.JSONNavi
-
add value to the current arrays
- addValue(Object, Object) - Method in class net.minidev.json.mapper.AMapper
-
add a value in an array json object.
- addValue(Object, Object) - Method in class net.minidev.json.mapper.ArraysMapper
-
- addValue(Object, Object) - Method in class net.minidev.json.mapper.CollectionMapper.ListClass
-
- addValue(Object, Object) - Method in class net.minidev.json.mapper.CollectionMapper.ListType
-
- addValue(Object, Object) - Method in class net.minidev.json.mapper.CompessorMapper
-
- addValue(Object, Object) - Method in class net.minidev.json.mapper.DefaultMapper
-
- addValue(Object, Object) - Method in class net.minidev.json.mapper.DefaultMapperCollection
-
- addValue(Object, Object) - Method in class net.minidev.json.mapper.DefaultMapperOrdered
-
- addValue(Object, Object) - Method in class net.minidev.json.mapper.FakeMapper
-
- addValue(Object, Object) - Method in class net.minidev.json.mapper.UpdaterMapper
-
add a value in an array json object.
- AMapper<T> - Class in net.minidev.json.mapper
-
Default datatype mapper use by Json-smart ton store data.
- AMapper() - Constructor for class net.minidev.json.mapper.AMapper
-
- array() - Method in class net.minidev.json.JSONNavi
-
Set current value as Json Array You can also skip this call Arrays can be
create automatically.
- ArraysMapper<T> - Class in net.minidev.json.mapper
-
- ArraysMapper() - Constructor for class net.minidev.json.mapper.ArraysMapper
-
- ArraysMapper.GenericMapper<T> - Class in net.minidev.json.mapper
-
- ArraysMapper.GenericMapper(Class<T>) - Constructor for class net.minidev.json.mapper.ArraysMapper.GenericMapper
-
- asBoolean() - Method in class net.minidev.json.JSONNavi
-
get the current value as boolean if the current Object is null or is not
a boolean return false
- asBooleanObj() - Method in class net.minidev.json.JSONNavi
-
get the current object value as Boolean if the current Object is not a
Boolean return null.
- asDouble() - Method in class net.minidev.json.JSONNavi
-
get the current value as double if the current Object is null return
Double.NaN
- asDoubleObj() - Method in class net.minidev.json.JSONNavi
-
get the current object value as Double if the current Double can not be
cast as Integer return null.
- asFloat() - Method in class net.minidev.json.JSONNavi
-
get the current value as float if the current Object is null return
Float.NaN
- asFloatObj() - Method in class net.minidev.json.JSONNavi
-
get the current object value as Float if the current Float can not be
cast as Integer return null.
- asInt() - Method in class net.minidev.json.JSONNavi
-
get the current value as int if the current Object is null return 0
- asIntegerObj() - Method in class net.minidev.json.JSONNavi
-
get the current object value as Integer if the current Object can not be
cast as Integer return null.
- asLong() - Method in class net.minidev.json.JSONNavi
-
get the current value as long if the current Object is null return 0
- asLongObj() - Method in class net.minidev.json.JSONNavi
-
get the current object value as Long if the current Object can not be
cast as Long return null.
- asString() - Method in class net.minidev.json.JSONNavi
-
get the current object value as String if the current Object is null
return null.
- at(String) - Method in class net.minidev.json.JSONNavi
-
- at(int) - Method in class net.minidev.json.JSONNavi
-
Access to the index position.
- atNext() - Method in class net.minidev.json.JSONNavi
-
Access to last + 1 the index position.
- parse(InputStream) - Static method in class net.minidev.json.JSONValue
-
Parse JSON text into java object from the input source.
- parse(byte[]) - Static method in class net.minidev.json.JSONValue
-
Parse JSON text into java object from the input source.
- parse(InputStream, Class<T>) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
mapTo can be a bean
- parse(Reader) - Static method in class net.minidev.json.JSONValue
-
Parse JSON text into java object from the input source.
- parse(byte[], Class<T>) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
mapTo can be a bean
- parse(Reader, Class<T>) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
mapTo can be a bean
- parse(Reader, T) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
mapTo can be a bean
- parse(Reader, AMapper<T>) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
- parse(String, Class<T>) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
mapTo can be a bean
- parse(InputStream, T) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
mapTo can be a bean
- parse(String, T) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
mapTo can be a bean
- parse(byte[], AMapper<T>) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
- parse(String, AMapper<T>) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
- parse(String) - Static method in class net.minidev.json.JSONValue
-
Parse JSON text into java object from the input source.
- parse(byte[]) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(byte[], AMapper<T>) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(byte[], Class<T>) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(InputStream) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(InputStream, AMapper<T>) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(InputStream, Class<T>) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(Reader) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(Reader, AMapper<T>) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(Reader, Class<T>) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(String) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(String, AMapper<T>) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- parse(String, Class<T>) - Method in class net.minidev.json.parser.JSONParser
-
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
- ParseException - Exception in net.minidev.json.parser
-
ParseException explains why and where the error occurs in source JSON text.
- ParseException(int, int, Object) - Constructor for exception net.minidev.json.parser.ParseException
-
- ParseException(int, Throwable) - Constructor for exception net.minidev.json.parser.ParseException
-
- parseKeepingOrder(Reader) - Static method in class net.minidev.json.JSONValue
-
Parse Json input to a java Object keeping element order
- parseKeepingOrder(String) - Static method in class net.minidev.json.JSONValue
-
Parse Json input to a java Object keeping element order
- parseStrict(Reader) - Static method in class net.minidev.json.JSONValue
-
Parse valid RFC4627 JSON text into java object from the input source.
- parseStrict(String) - Static method in class net.minidev.json.JSONValue
-
Parse valid RFC4627 JSON text into java object from the input source.
- parseWithException(byte[]) - Static method in class net.minidev.json.JSONValue
-
Parse JSON text into java object from the input source.
- parseWithException(InputStream) - Static method in class net.minidev.json.JSONValue
-
Parse JSON text into java object from the input source.
- parseWithException(Reader) - Static method in class net.minidev.json.JSONValue
-
Parse JSON text into java object from the input source.
- parseWithException(String) - Static method in class net.minidev.json.JSONValue
-
Parse JSON text into java object from the input source.
- parseWithException(String, Class<T>) - Static method in class net.minidev.json.JSONValue
-
Parse input json as a mapTo class
mapTo can be a bean
- protect4Web() - Method in class net.minidev.json.JSONStyle
-
- protectKeys() - Method in class net.minidev.json.JSONStyle
-
- protectValues() - Method in class net.minidev.json.JSONStyle
-