Uses of Class
com.fasterxml.jackson.databind.type.ReferenceType
-
Packages that use ReferenceType Package Description com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.module Package that contains classes and interfaces to help implement custom extensionModule
s (which are registered usingObjectMapper.registerModule(com.fasterxml.jackson.databind.Module)
.com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.std com.fasterxml.jackson.databind.type Package that contains concrete implementations ofJavaType
, as well as the factory (TypeFactory
) for constructing instances from various input data types (likeClass
,Type
) and programmatically (for structured types, arrays,List
s andMap
s). -
-
Uses of ReferenceType in com.fasterxml.jackson.databind.deser
-
Uses of ReferenceType in com.fasterxml.jackson.databind.module
Methods in com.fasterxml.jackson.databind.module with parameters of type ReferenceType Modifier and Type Method Description JsonDeserializer<?>
SimpleDeserializers. findReferenceDeserializer(ReferenceType refType, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)
-
Uses of ReferenceType in com.fasterxml.jackson.databind.ser
Methods in com.fasterxml.jackson.databind.ser with parameters of type ReferenceType Modifier and Type Method Description protected JsonSerializer<?>
BasicSerializerFactory. buildAtomicReferenceSerializer(SerializerProvider prov, ReferenceType refType, BeanDescription beanDesc, boolean staticTyping, TypeSerializer contentTypeSerializer, JsonSerializer<java.lang.Object> contentSerializer)
JsonSerializer<?>
BasicSerializerFactory. findReferenceSerializer(SerializerProvider prov, ReferenceType refType, BeanDescription beanDesc, boolean staticTyping)
JsonSerializer<?>
Serializers.Base. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<java.lang.Object> contentValueSerializer)
JsonSerializer<?>
Serializers. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<java.lang.Object> contentValueSerializer)
Method called by serialization framework first time a serializer is needed for givenReferenceType
-
Uses of ReferenceType in com.fasterxml.jackson.databind.ser.std
Constructors in com.fasterxml.jackson.databind.ser.std with parameters of type ReferenceType Constructor Description AtomicReferenceSerializer(ReferenceType fullType, boolean staticTyping, TypeSerializer vts, JsonSerializer<java.lang.Object> ser)
ReferenceTypeSerializer(ReferenceType fullType, boolean staticTyping, TypeSerializer vts, JsonSerializer<java.lang.Object> ser)
-
Uses of ReferenceType in com.fasterxml.jackson.databind.type
Methods in com.fasterxml.jackson.databind.type that return ReferenceType Modifier and Type Method Description static ReferenceType
ReferenceType. construct(java.lang.Class<?> cls, JavaType refType)
Deprecated.static ReferenceType
ReferenceType. construct(java.lang.Class<?> cls, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType refType)
static ReferenceType
ReferenceType. upgradeFrom(JavaType baseType, JavaType refdType)
Factory method that can be used to "upgrade" a basic type into collection-like one; usually done viaTypeModifier
ReferenceType
ReferenceType. withContentTypeHandler(java.lang.Object h)
ReferenceType
ReferenceType. withContentValueHandler(java.lang.Object h)
ReferenceType
ReferenceType. withStaticTyping()
ReferenceType
ReferenceType. withTypeHandler(java.lang.Object h)
ReferenceType
ReferenceType. withValueHandler(java.lang.Object h)
-