Package io.avaje.jsonb
Annotation Type Json.Import
- Enclosing class:
- Json
Specify types to generate JsonAdapters for.
These types are typically in an external project / dependency or otherwise
types that we can't or don't want to explicitly annotate with @Json.
Typically, we put this annotation on a package.
@Json.Import({Customer.class, Product.class, ...})
package org.example.processor;
-
Required Element Summary
Required Elements
-
Element Details
-
value
Specify types to generate Json Adapters for.
-