public class StdTypeResolverBuilder extends java.lang.Object implements TypeResolverBuilder<StdTypeResolverBuilder>
TypeResolverBuilder
implementation.Constructor and Description |
---|
StdTypeResolverBuilder() |
Modifier and Type | Method and Description |
---|---|
TypeDeserializer |
buildTypeDeserializer(DeserializationConfig config,
JavaType baseType,
java.util.Collection<NamedType> subtypes)
Method for building type deserializer based on current configuration
of this builder.
|
TypeSerializer |
buildTypeSerializer(SerializationConfig config,
JavaType baseType,
java.util.Collection<NamedType> subtypes)
Method for building type serializer based on current configuration
of this builder.
|
StdTypeResolverBuilder |
defaultImpl(java.lang.Class<?> defaultImpl)
Method for specifying default implementation to use if type id
is either not available, or cannot be resolved.
|
java.lang.Class<?> |
getDefaultImpl()
Accessor for currently configured default type; implementation
class that may be used in case no valid type information is
available during type resolution
|
java.lang.String |
getTypeProperty() |
StdTypeResolverBuilder |
inclusion(JsonTypeInfo.As includeAs)
Method for specifying mechanism to use for including type metadata
in JSON.
|
StdTypeResolverBuilder |
init(JsonTypeInfo.Id idType,
TypeIdResolver idRes)
Initialization method that is called right after constructing
the builder instance.
|
boolean |
isTypeIdVisible() |
static StdTypeResolverBuilder |
noTypeInfoBuilder() |
PolymorphicTypeValidator |
subTypeValidator(MapperConfig<?> config)
Overridable helper method for determining actual validator to use when constructing
type serializers and type deserializers.
|
StdTypeResolverBuilder |
typeIdVisibility(boolean isVisible)
Method for specifying whether type id should be visible to
JsonDeserializer s or not. |
StdTypeResolverBuilder |
typeProperty(java.lang.String typeIdPropName)
Method for constructing an instance with specified type property name
(property name to use for type id when using "as-property" inclusion).
|
public static StdTypeResolverBuilder noTypeInfoBuilder()
public StdTypeResolverBuilder init(JsonTypeInfo.Id idType, TypeIdResolver idRes)
TypeResolverBuilder
init
in interface TypeResolverBuilder<StdTypeResolverBuilder>
idType
- Which type metadata is usedidRes
- (optional) Custom type id resolver used, if anypublic TypeSerializer buildTypeSerializer(SerializationConfig config, JavaType baseType, java.util.Collection<NamedType> subtypes)
TypeResolverBuilder
buildTypeSerializer
in interface TypeResolverBuilder<StdTypeResolverBuilder>
baseType
- Base type that constructed resolver will
handle; super type of all types it will be used for.public TypeDeserializer buildTypeDeserializer(DeserializationConfig config, JavaType baseType, java.util.Collection<NamedType> subtypes)
TypeResolverBuilder
buildTypeDeserializer
in interface TypeResolverBuilder<StdTypeResolverBuilder>
baseType
- Base type that constructed resolver will
handle; super type of all types it will be used for.subtypes
- Known subtypes of the base type.public StdTypeResolverBuilder inclusion(JsonTypeInfo.As includeAs)
TypeResolverBuilder
JsonTypeInfo.As.PROPERTY
.inclusion
in interface TypeResolverBuilder<StdTypeResolverBuilder>
includeAs
- Mechanism used for including type metadata in JSONpublic StdTypeResolverBuilder typeProperty(java.lang.String typeIdPropName)
typeProperty
in interface TypeResolverBuilder<StdTypeResolverBuilder>
typeIdPropName
- Name of JSON property to use for including
type informationpublic StdTypeResolverBuilder defaultImpl(java.lang.Class<?> defaultImpl)
TypeResolverBuilder
defaultImpl
in interface TypeResolverBuilder<StdTypeResolverBuilder>
public StdTypeResolverBuilder typeIdVisibility(boolean isVisible)
TypeResolverBuilder
JsonDeserializer
s or not.typeIdVisibility
in interface TypeResolverBuilder<StdTypeResolverBuilder>
public java.lang.Class<?> getDefaultImpl()
TypeResolverBuilder
getDefaultImpl
in interface TypeResolverBuilder<StdTypeResolverBuilder>
public java.lang.String getTypeProperty()
public boolean isTypeIdVisible()
public PolymorphicTypeValidator subTypeValidator(MapperConfig<?> config)
Default implementation simply uses one configured and accessible using
MapperConfig.getPolymorphicTypeValidator()
.
Copyright © 2010 - 2020 Adobe. All Rights Reserved