T
- The type of entity beanpublic interface JsonReadBeanVisitor<T>
This visit method is called after all the known properties of the bean have been processed. Any JSON elements that could not be mapped to known bean properties are available in the unmapped Map.
Modifier and Type | Method and Description |
---|---|
void |
visit(T bean,
Map<String,JsonElement> unmapped)
Visit the bean that has just been processed.
|
void visit(T bean, Map<String,JsonElement> unmapped)
This provides a method of customising the bean and processing any custom JSON content.
bean
- the bean being processedunmapped
- Map of any JSON elements that didn't map to known bean propertiesCopyright © 2015. All Rights Reserved.