Uses of Class
com.fasterxml.jackson.databind.type.ArrayType

Packages that use ArrayType
com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding. 
com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses. 
com.fasterxml.jackson.databind.module Package that contains classes and interfaces to help implement custom extension Modules (which are registered using ObjectMapper.registerModule(com.fasterxml.jackson.databind.Module)
com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding. 
com.fasterxml.jackson.databind.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 com.fasterxml.jackson.databind.deser
 

Methods in com.fasterxml.jackson.databind.deser with parameters of type ArrayType
protected  JsonDeserializer<?> BasicDeserializerFactory._findCustomArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
abstract  JsonDeserializer<?> DeserializerFactory.createArrayDeserializer(DeserializationContext ctxt, ArrayType type, BeanDescription beanDesc)
          Method called to create (or, for completely immutable deserializers, reuse) a deserializer that can convert JSON content into values of specified Java type.
 JsonDeserializer<?> BasicDeserializerFactory.createArrayDeserializer(DeserializationContext ctxt, ArrayType type, BeanDescription beanDesc)
           
 JsonDeserializer<?> Deserializers.findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
          Method called to locate serializer for specified array type.
 JsonDeserializer<?> Deserializers.Base.findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
 

Uses of ArrayType in com.fasterxml.jackson.databind.deser.std
 

Fields in com.fasterxml.jackson.databind.deser.std declared as ArrayType
protected  ArrayType ObjectArrayDeserializer._arrayType
          Full generic type of the array being deserialized
 

Constructors in com.fasterxml.jackson.databind.deser.std with parameters of type ArrayType
ObjectArrayDeserializer(ArrayType arrayType, JsonDeserializer<Object> elemDeser, TypeDeserializer elemTypeDeser)
           
 

Uses of ArrayType in com.fasterxml.jackson.databind.module
 

Methods in com.fasterxml.jackson.databind.module with parameters of type ArrayType
 JsonDeserializer<?> SimpleDeserializers.findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
 JsonSerializer<?> SimpleSerializers.findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
           
 

Uses of ArrayType in com.fasterxml.jackson.databind.ser
 

Methods in com.fasterxml.jackson.databind.ser with parameters of type ArrayType
protected  JsonSerializer<?> BasicSerializerFactory.buildArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
          Helper method that handles configuration details when constructing serializers for Object[] (and subtypes, except for String).
 JsonSerializer<?> Serializers.findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, 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, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
           
 

Uses of ArrayType in com.fasterxml.jackson.databind.type
 

Methods in com.fasterxml.jackson.databind.type that return ArrayType
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)
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.