Package | Description |
---|---|
org.kordamp.json |
The core of the library
|
org.kordamp.json.processors |
Support for custom serialization
|
Modifier and Type | Field and Description |
---|---|
static PropertyNameProcessorMatcher |
JsonConfig.DEFAULT_PROPERTY_NAME_PROCESSOR_MATCHER |
Modifier and Type | Method and Description |
---|---|
PropertyNameProcessorMatcher |
JsonConfig.getJavaPropertyNameProcessorMatcher()
Returns the configured PropertyNameProcessorMatcher.
Default value is PropertyNameProcessorMatcher.DEFAULT [JSON -> Java] |
PropertyNameProcessorMatcher |
JsonConfig.getJsonPropertyNameProcessorMatcher()
Returns the configured PropertyNameProcessorMatcher.
Default value is PropertyNameProcessorMatcher.DEFAULT [Java -> JSON] |
PropertyNameProcessorMatcher |
JsonConfig.getPropertyNameProcessorMatcher()
Deprecated.
use getJavaPropertyNameProcessorMatcher() instead
|
Modifier and Type | Method and Description |
---|---|
void |
JsonConfig.setJavaPropertyNameProcessorMatcher(PropertyNameProcessorMatcher propertyNameProcessorMatcher)
Sets a PropertyNameProcessorMatcher to use.
Will set default value (PropertyNameProcessorMatcher.DEFAULT) if null. [JSON -> Java] |
void |
JsonConfig.setJsonPropertyNameProcessorMatcher(PropertyNameProcessorMatcher propertyNameProcessorMatcher)
Sets a PropertyNameProcessorMatcher to use.
Will set default value (PropertyNameProcessorMatcher.DEFAULT) if null. [Java -> JSON] |
void |
JsonConfig.setPropertyNameProcessorMatcher(PropertyNameProcessorMatcher propertyNameProcessorMatcher)
Deprecated.
use setJavaPropertyNameProcessorMatcher() instead
|
Modifier and Type | Field and Description |
---|---|
static PropertyNameProcessorMatcher |
PropertyNameProcessorMatcher.DEFAULT
Matches the target with equals()
|