Class JsonMapFormatVisitor.Base
java.lang.Object
com.fasterxml.jackson.databind.jsonFormatVisitors.JsonMapFormatVisitor.Base
- All Implemented Interfaces:
JsonFormatVisitorWithSerializerProvider,JsonMapFormatVisitor
- Enclosing interface:
JsonMapFormatVisitor
Default "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.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.fasterxml.jackson.databind.jsonFormatVisitors.JsonMapFormatVisitor
JsonMapFormatVisitor.Base -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidkeyFormat(JsonFormatVisitable handler, JavaType keyType) Visit method called to indicate type of keys of the Map type being visitedvoidvoidvalueFormat(JsonFormatVisitable handler, JavaType valueType) Visit method called afterJsonMapFormatVisitor.keyFormat(com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable, com.fasterxml.jackson.databind.JavaType)to allow visiting of the value type
-
Constructor Details
-
Base
public Base() -
Base
-
-
Method Details
-
getProvider
- Specified by:
getProviderin interfaceJsonFormatVisitorWithSerializerProvider
-
setProvider
- Specified by:
setProviderin interfaceJsonFormatVisitorWithSerializerProvider
-
keyFormat
Description copied from interface:JsonMapFormatVisitorVisit method called to indicate type of keys of the Map type being visited- Specified by:
keyFormatin interfaceJsonMapFormatVisitor- Throws:
JsonMappingException
-
valueFormat
public void valueFormat(JsonFormatVisitable handler, JavaType valueType) throws JsonMappingException Description copied from interface:JsonMapFormatVisitorVisit method called afterJsonMapFormatVisitor.keyFormat(com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable, com.fasterxml.jackson.databind.JavaType)to allow visiting of the value type- Specified by:
valueFormatin interfaceJsonMapFormatVisitor- Throws:
JsonMappingException
-