• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Package that contains classes and interfaces to help implement
3  * custom extension {@link com.fasterxml.jackson.databind.Module}s
4  * (which are registered using
5  * {@link com.fasterxml.jackson.databind.ObjectMapper#registerModule}.
6  *<p>
7  * Note that classes in the package only support registering
8  * handlers for non-generic types (types without type
9  * parameterization) -- hence "simple" -- which works for
10  * many cases, but not all. So if you will need to register
11  * handlers for generic types, you will usually need to either
12  * sub-class handlers, or implement/extend base types directly.
13  */
14 package com.fasterxml.jackson.databind.module;
15