Package | Description |
---|---|
org.kordamp.json |
The core of the library
|
Modifier and Type | Method and Description |
---|---|
PropertyNameProcessor |
JsonConfig.findJavaPropertyNameProcessor(Class beanClass)
Finds a PropertyNameProcessor registered to the target class.
Returns null if none is registered. [JSON -> Java] |
PropertyNameProcessor |
JsonConfig.findJsonPropertyNameProcessor(Class beanClass)
Finds a PropertyNameProcessor registered to the target class.
Returns null if none is registered. [Java -> JSON] |
PropertyNameProcessor |
JsonConfig.findPropertyNameProcessor(Class beanClass)
Deprecated.
use findJavaPropertyNameProcessor() instead
|
Modifier and Type | Method and Description |
---|---|
void |
JsonConfig.registerJavaPropertyNameProcessor(Class target,
PropertyNameProcessor propertyNameProcessor)
Registers a PropertyNameProcessor.
[JSON -> Java] |
void |
JsonConfig.registerJsonPropertyNameProcessor(Class target,
PropertyNameProcessor propertyNameProcessor)
Registers a PropertyNameProcessor.
[Java -> JSON] |
void |
JsonConfig.registerPropertyNameProcessor(Class target,
PropertyNameProcessor propertyNameProcessor)
Deprecated.
use registerJavaPropertyNameProcessor() instead
|