Uses of Interface
net.sf.json.processors.JsonValueProcessor
-
Packages that use JsonValueProcessor Package Description net.sf.json The core of the librarynet.sf.json.processors Support for custom serialization -
-
Uses of JsonValueProcessor in net.sf.json
Methods in net.sf.json that return JsonValueProcessor Modifier and Type Method Description JsonValueProcessor
JsonConfig. findJsonValueProcessor(java.lang.Class propertyType)
Finds a JsonValueProcessor registered to the target type.
Returns null if none is registered.
[Java -> JSON]JsonValueProcessor
JsonConfig. findJsonValueProcessor(java.lang.Class beanClass, java.lang.Class propertyType, java.lang.String key)
Finds a JsonValueProcessor.
It will search the registered JsonValueProcessors in the following order: beanClass, key beanClass, type key type Returns null if none is registered.
[Java -> JSON]JsonValueProcessor
JsonConfig. findJsonValueProcessor(java.lang.Class propertyType, java.lang.String key)
Finds a JsonValueProcessor.
It will search the registered JsonValueProcessors in the following order: key type Returns null if none is registered.
[Java -> JSON]Methods in net.sf.json with parameters of type JsonValueProcessor Modifier and Type Method Description void
JsonConfig. registerJsonValueProcessor(java.lang.Class beanClass, java.lang.Class propertyType, JsonValueProcessor jsonValueProcessor)
Registers a JsonValueProcessor.
[Java -> JSON]void
JsonConfig. registerJsonValueProcessor(java.lang.Class beanClass, java.lang.String key, JsonValueProcessor jsonValueProcessor)
Registers a JsonValueProcessor.
[Java -> JSON]void
JsonConfig. registerJsonValueProcessor(java.lang.Class propertyType, JsonValueProcessor jsonValueProcessor)
Registers a JsonValueProcessor.
[Java -> JSON]void
JsonConfig. registerJsonValueProcessor(java.lang.String key, JsonValueProcessor jsonValueProcessor)
Registers a JsonValueProcessor.
[Java -> JSON] -
Uses of JsonValueProcessor in net.sf.json.processors
Classes in net.sf.json.processors that implement JsonValueProcessor Modifier and Type Class Description class
JsDateJsonValueProcessor
Transforms a java.util.Date property into a JSONObject ideal for JsDate conversion
-