Module tools.jackson.databind
Interface JsonMapFormatVisitor
- All Superinterfaces:
JsonFormatVisitorWithSerializationContext
- All Known Implementing Classes:
JsonMapFormatVisitor.Base
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classDefault "empty" implementation, useful as the base to start on; especially as it is guaranteed to implement all the method of the interface, even if new methods are getting added. -
Method Summary
Modifier and TypeMethodDescriptionvoidkeyFormat(JsonFormatVisitable handler, JavaType keyType) Visit method called to indicate type of keys of the Map type being visitedvoidvalueFormat(JsonFormatVisitable handler, JavaType valueType) Visit method called afterkeyFormat(tools.jackson.databind.jsonFormatVisitors.JsonFormatVisitable, tools.jackson.databind.JavaType)to allow visiting of the value typeMethods inherited from interface tools.jackson.databind.jsonFormatVisitors.JsonFormatVisitorWithSerializationContext
getContext, setContext
-
Method Details
-
keyFormat
Visit method called to indicate type of keys of the Map type being visited -
valueFormat
Visit method called afterkeyFormat(tools.jackson.databind.jsonFormatVisitors.JsonFormatVisitable, tools.jackson.databind.JavaType)to allow visiting of the value type
-