Uses of Class
org.codehaus.jackson.map.type.ArrayType
Packages that use ArrayType
Package
Description
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper
class, as well
as convenience methods included in
JsonParser
Contains implementation classes of deserialization part of
data binding.
Contains public standard implementations of abstraction that
Jackson uses.
Package that contains classes and interfaces to help implement
custom extension
Module
s
(which are registered using
ObjectMapper.registerModule(org.codehaus.jackson.map.Module)
.Contains implementation classes of serialization part of
data binding.
-
Uses of ArrayType in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map with parameters of type ArrayTypeModifier and TypeMethodDescriptionabstract JsonDeserializer<?>
DeserializerFactory.createArrayDeserializer
(DeserializationConfig config, DeserializerProvider p, ArrayType type, BeanProperty property) Method called to create (or, for completely immutable deserializers, reuse) a deserializer that can convert JSON content into values of specified Java type.Deserializers.Base.findArrayDeserializer
(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Deserializers.findArrayDeserializer
(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Method called to locate serializer for specified array type.Serializers.Base.findArraySerializer
(SerializationConfig config, ArrayType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Serializers.findArraySerializer
(SerializationConfig config, ArrayType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Method called by serialization framework first time a serializer is needed for specified array type. -
Uses of ArrayType in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser with parameters of type ArrayTypeModifier and TypeMethodDescriptionprotected abstract JsonDeserializer<?>
BasicDeserializerFactory._findCustomArrayDeserializer
(ArrayType type, DeserializationConfig config, DeserializerProvider p, BeanProperty property, TypeDeserializer elementTypeDeser, JsonDeserializer<?> elementDeser) protected JsonDeserializer<?>
BeanDeserializerFactory._findCustomArrayDeserializer
(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) BasicDeserializerFactory.createArrayDeserializer
(DeserializationConfig config, DeserializerProvider p, ArrayType type, BeanProperty property) CustomDeserializerFactory.createArrayDeserializer
(DeserializationConfig config, DeserializerProvider p, ArrayType type, BeanProperty property) Deprecated.Constructors in org.codehaus.jackson.map.deser with parameters of type ArrayTypeModifierConstructorDescriptionArrayDeserializer
(ArrayType arrayType, JsonDeserializer<Object> elemDeser) Deprecated.ArrayDeserializer
(ArrayType arrayType, JsonDeserializer<Object> elemDeser, TypeDeserializer elemTypeDeser) Deprecated. -
Uses of ArrayType in org.codehaus.jackson.map.deser.std
Constructors in org.codehaus.jackson.map.deser.std with parameters of type ArrayTypeModifierConstructorDescriptionObjectArrayDeserializer
(ArrayType arrayType, JsonDeserializer<Object> elemDeser, TypeDeserializer elemTypeDeser) -
Uses of ArrayType in org.codehaus.jackson.map.module
Methods in org.codehaus.jackson.map.module with parameters of type ArrayTypeModifier and TypeMethodDescriptionSimpleDeserializers.findArrayDeserializer
(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) SimpleSerializers.findArraySerializer
(SerializationConfig config, ArrayType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of ArrayType in org.codehaus.jackson.map.ser
Methods in org.codehaus.jackson.map.ser with parameters of type ArrayTypeModifier and TypeMethodDescriptionprotected JsonSerializer<?>
BasicSerializerFactory.buildArraySerializer
(SerializationConfig config, ArrayType type, BasicBeanDescription beanDesc, BeanProperty property, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Helper method that handles configuration details when constructing serializers forObject[]
(and subtypes, except for String). -
Uses of ArrayType in org.codehaus.jackson.map.type
Methods in org.codehaus.jackson.map.type that return ArrayTypeModifier and TypeMethodDescriptionstatic ArrayType
Deprecated.Since 1.9, if you must directly instantiate, call method that takes handlersstatic ArrayType
TypeFactory.constructArrayType
(Class<?> elementType) Method for constructing anArrayType
.TypeFactory.constructArrayType
(JavaType elementType) Method for constructing anArrayType
.ArrayType.withContentTypeHandler
(Object h) ArrayType.withContentValueHandler
(Object h) ArrayType.withTypeHandler
(Object h) ArrayType.withValueHandler
(Object h)