Uses of Interface
com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitorWithSerializerProvider
-
Packages that use JsonFormatVisitorWithSerializerProvider Package Description com.fasterxml.jackson.databind.jsonFormatVisitors Classes used for exposing logical structure of POJOs as Jackson sees it, and exposed viaObjectMapper.acceptJsonFormatVisitor(Class, JsonFormatVisitorWrapper)andObjectMapper.acceptJsonFormatVisitor(com.fasterxml.jackson.databind.JavaType, JsonFormatVisitorWrapper)methods. -
-
Uses of JsonFormatVisitorWithSerializerProvider in com.fasterxml.jackson.databind.jsonFormatVisitors
Subinterfaces of JsonFormatVisitorWithSerializerProvider in com.fasterxml.jackson.databind.jsonFormatVisitors Modifier and Type Interface Description interfaceJsonArrayFormatVisitorinterfaceJsonFormatVisitorWrapperInterface for visitor callbacks, when type in question can be any of legal JSON types.interfaceJsonMapFormatVisitorinterfaceJsonObjectFormatVisitorVisitor called when properties of a type that maps to JSON Object are being visited: this usually means POJOs, but sometimes other types use it too (likeEnumMap).Classes in com.fasterxml.jackson.databind.jsonFormatVisitors that implement JsonFormatVisitorWithSerializerProvider Modifier and Type Class Description static classJsonArrayFormatVisitor.BaseDefault "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.static classJsonFormatVisitorWrapper.BaseEmpty "no-op" implementation ofJsonFormatVisitorWrapper, suitable for sub-classing.static classJsonMapFormatVisitor.BaseDefault "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.static classJsonObjectFormatVisitor.BaseDefault "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.
-