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 extensionModules (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 -
-
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<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<Object> contentValueSerializer)JsonSerializer<?>Serializers. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<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<Object> ser)ReferenceTypeSerializer(ReferenceType fullType, boolean staticTyping, TypeSerializer vts, JsonSerializer<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 ReferenceTypeReferenceType. construct(Class<?> cls, JavaType refType)Deprecated.static ReferenceTypeReferenceType. construct(Class<?> cls, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType refType)static ReferenceTypeReferenceType. upgradeFrom(JavaType baseType, JavaType refdType)Factory method that can be used to "upgrade" a basic type into collection-like one; usually done viaTypeModifierReferenceTypeReferenceType. withContentTypeHandler(Object h)ReferenceTypeReferenceType. withContentValueHandler(Object h)ReferenceTypeReferenceType. withStaticTyping()ReferenceTypeReferenceType. withTypeHandler(Object h)ReferenceTypeReferenceType. withValueHandler(Object h)
-