Uses of Class
org.codehaus.jackson.map.jsontype.NamedType

Packages that use NamedType
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.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. 
org.codehaus.jackson.map.jsontype Package that contains interfaces that define how to implement functionality for dynamically resolving type during deserialization. 
org.codehaus.jackson.map.jsontype.impl Package that contains standard implementations for TypeResolverBuilder and org.codehaus.jackson.map.jsontype.JsonTypeResolver it can construct. 
org.codehaus.jackson.map.util Utility classes for Mapper package. 
org.codehaus.jackson.xc Package that contains Xml Compatibility functionality for Jackson. 
 

Uses of NamedType in org.codehaus.jackson.map
 

Methods in org.codehaus.jackson.map that return types with arguments of type NamedType
abstract  List<NamedType> AnnotationIntrospector.findSubtypes(Annotated a)
          Method for locating annotation-specified subtypes related to annotated entity (class, method, field).
 List<NamedType> AnnotationIntrospector.Pair.findSubtypes(Annotated a)
           
 

Method parameters in org.codehaus.jackson.map with type arguments of type NamedType
 TypeDeserializer ObjectMapper.DefaultTypeResolverBuilder.buildTypeDeserializer(JavaType baseType, Collection<NamedType> subtypes)
           
 TypeSerializer ObjectMapper.DefaultTypeResolverBuilder.buildTypeSerializer(JavaType baseType, Collection<NamedType> subtypes)
           
 

Uses of NamedType in org.codehaus.jackson.map.introspect
 

Methods in org.codehaus.jackson.map.introspect that return types with arguments of type NamedType
 List<NamedType> NopAnnotationIntrospector.findSubtypes(Annotated a)
           
 List<NamedType> JacksonAnnotationIntrospector.findSubtypes(Annotated a)
           
 

Uses of NamedType in org.codehaus.jackson.map.jsontype
 

Method parameters in org.codehaus.jackson.map.jsontype with type arguments of type NamedType
 TypeDeserializer TypeResolverBuilder.buildTypeDeserializer(JavaType baseType, Collection<NamedType> subtypes)
          Method for building type deserializer based on current configuration of this builder.
 TypeSerializer TypeResolverBuilder.buildTypeSerializer(JavaType baseType, Collection<NamedType> subtypes)
          Method for building type serializer based on current configuration of this builder.
 

Uses of NamedType in org.codehaus.jackson.map.jsontype.impl
 

Method parameters in org.codehaus.jackson.map.jsontype.impl with type arguments of type NamedType
 TypeDeserializer StdTypeResolverBuilder.buildTypeDeserializer(JavaType baseType, Collection<NamedType> subtypes)
           
 TypeSerializer StdTypeResolverBuilder.buildTypeSerializer(JavaType baseType, Collection<NamedType> subtypes)
           
static TypeNameIdResolver TypeNameIdResolver.construct(JavaType baseType, Collection<NamedType> subtypes, boolean forSer, boolean forDeser)
           
protected  TypeIdResolver StdTypeResolverBuilder.idResolver(JavaType baseType, Collection<NamedType> subtypes, boolean forSer, boolean forDeser)
          Helper method that will either return configured custom type id resolver, or construct a standard resolver given configuration.
 

Uses of NamedType in org.codehaus.jackson.map.util
 

Methods in org.codehaus.jackson.map.util that return types with arguments of type NamedType
protected  List<NamedType> SubTypeHelper._collectAndResolve(AnnotatedClass rootType, MapperConfig<?> config, AnnotationIntrospector ai, Collection<NamedType> subtypeList)
           
static List<NamedType> SubTypeHelper.collectAndResolveSubtypes(Annotated base, MapperConfig<?> config, AnnotationIntrospector ai)
           
 

Method parameters in org.codehaus.jackson.map.util with type arguments of type NamedType
protected  List<NamedType> SubTypeHelper._collectAndResolve(AnnotatedClass rootType, MapperConfig<?> config, AnnotationIntrospector ai, Collection<NamedType> subtypeList)
           
 

Uses of NamedType in org.codehaus.jackson.xc
 

Methods in org.codehaus.jackson.xc that return types with arguments of type NamedType
 List<NamedType> JaxbAnnotationIntrospector.findSubtypes(Annotated a)