Uses of Interface
org.kordamp.json.processors.JsonValueProcessor
Packages that use JsonValueProcessor
Package
Description
The core of the library
Support for custom serialization
-
Uses of JsonValueProcessor in org.kordamp.json
Methods in org.kordamp.json that return JsonValueProcessorModifier and TypeMethodDescriptionJsonConfig.findJsonValueProcessor
(Class propertyType) Finds a JsonValueProcessor registered to the target type.
Returns null if none is registered.
[Java -> JSON]JsonConfig.findJsonValueProcessor
(Class beanClass, Class propertyType, 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]JsonConfig.findJsonValueProcessor
(Class propertyType, 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 org.kordamp.json with parameters of type JsonValueProcessorModifier and TypeMethodDescriptionvoid
JsonConfig.registerJsonValueProcessor
(Class beanClass, Class propertyType, JsonValueProcessor jsonValueProcessor) Registers a JsonValueProcessor.
[Java -> JSON]void
JsonConfig.registerJsonValueProcessor
(Class beanClass, String key, JsonValueProcessor jsonValueProcessor) Registers a JsonValueProcessor.
[Java -> JSON]void
JsonConfig.registerJsonValueProcessor
(Class propertyType, JsonValueProcessor jsonValueProcessor) Registers a JsonValueProcessor.
[Java -> JSON]void
JsonConfig.registerJsonValueProcessor
(String key, JsonValueProcessor jsonValueProcessor) Registers a JsonValueProcessor.
[Java -> JSON] -
Uses of JsonValueProcessor in org.kordamp.json.processors
Classes in org.kordamp.json.processors that implement JsonValueProcessorModifier and TypeClassDescriptionclass
Transforms a java.util.Date property into a JSONObject ideal for JsDate conversion