Uses of Class
org.codehaus.jackson.map.type.ArrayType

Packages that use ArrayType
org.codehaus.jackson.map 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 
org.codehaus.jackson.map.deser Contains implementation classes of deserialization part of data binding. 
org.codehaus.jackson.map.deser.std Contains public standard implementations of abstraction that Jackson uses. 
org.codehaus.jackson.map.module Package that contains classes and interfaces to help implement custom extension Modules (which are registered using ObjectMapper.registerModule(org.codehaus.jackson.map.Module)
org.codehaus.jackson.map.ser Contains implementation classes of serialization part of data binding. 
org.codehaus.jackson.map.type Package that contains concrete implementations of JavaType, as well as the factory (TypeFactory) for constructing instances from various input data types (like Class, Type) and programmatically (for structured types, arrays, Lists and Maps). 
 

Uses of ArrayType in org.codehaus.jackson.map
 

Methods in org.codehaus.jackson.map with parameters of type ArrayType
abstract  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.
 JsonDeserializer<?> Deserializers.findArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
          Method called to locate serializer for specified array type.
 JsonDeserializer<?> Deserializers.Base.findArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
 JsonSerializer<?> 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.
 JsonSerializer<?> Serializers.Base.findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
           
 

Uses of ArrayType in org.codehaus.jackson.map.deser
 

Methods in org.codehaus.jackson.map.deser with parameters of type ArrayType
protected  JsonDeserializer<?> BeanDeserializerFactory._findCustomArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
protected abstract  JsonDeserializer<?> BasicDeserializerFactory._findCustomArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider p, BeanProperty property, TypeDeserializer elementTypeDeser, JsonDeserializer<?> elementDeser)
           
 JsonDeserializer<?> CustomDeserializerFactory.createArrayDeserializer(DeserializationConfig config, DeserializerProvider p, ArrayType type, BeanProperty property)
          Deprecated.  
 JsonDeserializer<?> BasicDeserializerFactory.createArrayDeserializer(DeserializationConfig config, DeserializerProvider p, ArrayType type, BeanProperty property)
           
 

Constructors in org.codehaus.jackson.map.deser with parameters of type ArrayType
ArrayDeserializer(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 ArrayType
ObjectArrayDeserializer(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 ArrayType
 JsonDeserializer<?> SimpleDeserializers.findArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
 JsonSerializer<?> 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 ArrayType
protected  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 for Object[] (and subtypes, except for String).
 

Uses of ArrayType in org.codehaus.jackson.map.type
 

Methods in org.codehaus.jackson.map.type that return ArrayType
static ArrayType ArrayType.construct(JavaType componentType)
          Deprecated. Since 1.9, if you must directly instantiate, call method that takes handlers
static ArrayType ArrayType.construct(JavaType componentType, Object valueHandler, Object typeHandler)
           
 ArrayType TypeFactory.constructArrayType(Class<?> elementType)
          Method for constructing an ArrayType.
 ArrayType TypeFactory.constructArrayType(JavaType elementType)
          Method for constructing an ArrayType.
 ArrayType ArrayType.withContentTypeHandler(Object h)
           
 ArrayType ArrayType.withContentValueHandler(Object h)
           
 ArrayType ArrayType.withTypeHandler(Object h)
           
 ArrayType ArrayType.withValueHandler(Object h)