Uses of Class
org.codehaus.jackson.map.type.ArrayType
-
Packages that use ArrayType Package Description 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 viaObjectMapper
class, as well as convenience methods included inJsonParser
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 extensionModule
s (which are registered usingObjectMapper.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 -
-
Uses of ArrayType in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map with parameters of type ArrayType Modifier and Type Method Description 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.Base. findArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
JsonDeserializer<?>
Deserializers. findArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
Method called to locate serializer for specified array type.JsonSerializer<?>
Serializers.Base. findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
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. -
Uses of ArrayType in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser with parameters of type ArrayType Modifier and Type Method Description protected 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)
JsonDeserializer<?>
BasicDeserializerFactory. createArrayDeserializer(DeserializationConfig config, DeserializerProvider p, ArrayType type, BeanProperty property)
JsonDeserializer<?>
CustomDeserializerFactory. createArrayDeserializer(DeserializationConfig config, DeserializerProvider p, ArrayType type, BeanProperty property)
Deprecated.Constructors in org.codehaus.jackson.map.deser with parameters of type ArrayType Constructor Description 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 Constructor Description 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 Modifier and Type Method Description 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 Modifier and Type Method Description 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 forObject[]
(and subtypes, except for String). -
Uses of ArrayType in org.codehaus.jackson.map.type
Methods in org.codehaus.jackson.map.type that return ArrayType Modifier and Type Method Description static ArrayType
ArrayType. construct(JavaType componentType)
Deprecated.Since 1.9, if you must directly instantiate, call method that takes handlersstatic ArrayType
ArrayType. construct(JavaType componentType, Object valueHandler, Object typeHandler)
ArrayType
TypeFactory. constructArrayType(Class<?> elementType)
Method for constructing anArrayType
.ArrayType
TypeFactory. constructArrayType(JavaType elementType)
Method for constructing anArrayType
.ArrayType
ArrayType. withContentTypeHandler(Object h)
ArrayType
ArrayType. withContentValueHandler(Object h)
ArrayType
ArrayType. withTypeHandler(Object h)
ArrayType
ArrayType. withValueHandler(Object h)
-