public static final class PojoCodecProvider.Builder
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
PojoCodecProvider.Builder |
automatic(boolean automatic)
Sets whether the provider should automatically try to create a
ClassModel for any class that is requested. |
PojoCodecProvider |
build()
Creates the PojoCodecProvider with the classes or packages that configured and registered.
|
PojoCodecProvider.Builder |
conventions(java.util.List<Convention> conventions)
Sets the conventions to use when creating
ClassModels from classes or packages. |
PojoCodecProvider.Builder |
register(java.lang.Class<?>... classes)
Registers a classes with the builder for inclusion in the Provider.
|
PojoCodecProvider.Builder |
register(ClassModel<?>... classModels)
Registers classModels for inclusion in the Provider.
|
PojoCodecProvider.Builder |
register(PropertyCodecProvider... providers)
Registers codec providers that receive the type parameters of properties for instances encoded and decoded
by a
PojoCodec handled by this provider. |
PojoCodecProvider.Builder |
register(java.lang.String... packageNames)
Registers the packages of the given classes with the builder for inclusion in the Provider.
|
public PojoCodecProvider build()
register(Class...)
public PojoCodecProvider.Builder automatic(boolean automatic)
ClassModel
for any class that is requested.
Note: As Java Beans are convention based, when using automatic settings the provider should be the last provider in the registry.
automatic
- whether to automatically create ClassModels
or not.public PojoCodecProvider.Builder conventions(java.util.List<Convention> conventions)
ClassModels
from classes or packages.conventions
- a list of conventionspublic PojoCodecProvider.Builder register(java.lang.Class<?>... classes)
Note: Uses reflection for the property mapping. If no conventions are configured on the builder the
Conventions.DEFAULT_CONVENTIONS
will be used.
classes
- the classes to registerpublic PojoCodecProvider.Builder register(ClassModel<?>... classModels)
classModels
- the classModels to registerpublic PojoCodecProvider.Builder register(java.lang.String... packageNames)
Note: Uses reflection for the field mapping. If no conventions are configured on the builder the
Conventions.DEFAULT_CONVENTIONS
will be used.
packageNames
- the package names to registerpublic PojoCodecProvider.Builder register(PropertyCodecProvider... providers)
PojoCodec
handled by this provider.
Note that you should prefer working with the CodecRegistry
/CodecProvider
hierarchy. Providers
should only be registered here if a codec needs to be created for custom container types like optionals and
collections. Support for types Map
and Collection
are built-in so explicitly handling
them is not necessary.
providers
- property codec providers to register