Package net.minidev.json.writer
Class CollectionMapper.MapClass<T>
java.lang.Object
net.minidev.json.writer.JsonReaderI<T>
net.minidev.json.writer.CollectionMapper.MapClass<T>
- Enclosing class:
- CollectionMapper
-
Field Summary
Fields inherited from class net.minidev.json.writer.JsonReaderI
base
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionuse to instantiate a new object that will be used as an objectGets the type for the specified keyGets a value from the current objectvoid
called when json-smart done parsing a valueJsonReaderI<?>
startArray
(String key) called when json-smart parser start an array.JsonReaderI<?>
startObject
(String key) called when json-smart parser meet an object keyMethods inherited from class net.minidev.json.writer.JsonReaderI
addValue, convert, createArray
-
Constructor Details
-
MapClass
-
-
Method Details
-
createObject
Description copied from class:JsonReaderI
use to instantiate a new object that will be used as an object- Overrides:
createObject
in classJsonReaderI<T>
- Returns:
- a new object instance
-
startArray
Description copied from class:JsonReaderI
called when json-smart parser start an array.- Overrides:
startArray
in classJsonReaderI<T>
- Parameters:
key
- the destination key name, or null.- Returns:
- a JsonReaderI to handle the array parsing
-
startObject
Description copied from class:JsonReaderI
called when json-smart parser meet an object key- Overrides:
startObject
in classJsonReaderI<T>
- Parameters:
key
- key name- Returns:
- a JsonReaderI to handle the object parsing
-
setValue
Description copied from class:JsonReaderI
called when json-smart done parsing a value- Overrides:
setValue
in classJsonReaderI<T>
- Parameters:
current
- the current object being builtkey
- the key for the valuevalue
- the parsed value
-
getValue
Description copied from class:JsonReaderI
Gets a value from the current object- Overrides:
getValue
in classJsonReaderI<T>
- Parameters:
current
- the current objectkey
- the key to get the value for- Returns:
- the value associated with the key
-
getType
Description copied from class:JsonReaderI
Gets the type for the specified key- Overrides:
getType
in classJsonReaderI<T>
- Parameters:
key
- the key to get the type for- Returns:
- the Type associated with the key
-