Uses of Class
com.fasterxml.jackson.databind.introspect.AnnotatedField

Packages that use AnnotatedField
com.fasterxml.jackson.databind 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 
com.fasterxml.jackson.databind.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces. 
com.fasterxml.jackson.databind.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. 
com.fasterxml.jackson.databind.util Utility classes for Mapper package. 
 

Uses of AnnotatedField in com.fasterxml.jackson.databind
 

Methods in com.fasterxml.jackson.databind with parameters of type AnnotatedField
 String AnnotationIntrospector.findDeserializationName(AnnotatedField af)
          Method for checking whether given member field represent a deserializable logical property; and if so, returns the name of that property.
 String AnnotationIntrospector.Pair.findDeserializationName(AnnotatedField af)
           
 String AnnotationIntrospector.findSerializationName(AnnotatedField af)
          Method for checking whether given member field represent a serializable logical property; and if so, returns the name of that property.
 String AnnotationIntrospector.Pair.findSerializationName(AnnotatedField af)
           
 String PropertyNamingStrategy.nameForField(MapperConfig<?> config, AnnotatedField field, String defaultName)
          Method called to find external name (name used in JSON) for given logical POJO property, as defined by given field.
 String PropertyNamingStrategy.PropertyNamingStrategyBase.nameForField(MapperConfig<?> config, AnnotatedField field, String defaultName)
           
 

Uses of AnnotatedField in com.fasterxml.jackson.databind.deser.impl
 

Fields in com.fasterxml.jackson.databind.deser.impl declared as AnnotatedField
protected  AnnotatedField FieldProperty._annotated
           
 

Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type AnnotatedField
FieldProperty(BeanPropertyDefinition propDef, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedField field)
           
 

Uses of AnnotatedField in com.fasterxml.jackson.databind.introspect
 

Fields in com.fasterxml.jackson.databind.introspect with type parameters of type AnnotatedField
protected  com.fasterxml.jackson.databind.introspect.POJOPropertyBuilder.Linked<AnnotatedField> POJOPropertyBuilder._fields
           
protected  List<AnnotatedField> AnnotatedClass._fields
          Member fields of interest: ones that are either public, or have at least one annotation.
 

Methods in com.fasterxml.jackson.databind.introspect that return AnnotatedField
protected  AnnotatedField AnnotatedClass._constructField(Field f)
           
 AnnotatedField POJOPropertyBuilder.getField()
           
abstract  AnnotatedField BeanPropertyDefinition.getField()
           
 AnnotatedField AnnotatedField.withAnnotations(AnnotationMap ann)
           
 

Methods in com.fasterxml.jackson.databind.introspect that return types with arguments of type AnnotatedField
protected  Map<String,AnnotatedField> AnnotatedClass._findFields(Class<?> c, Map<String,AnnotatedField> fields)
           
 LinkedHashMap<String,AnnotatedField> BasicBeanDescription._findPropertyFields(Collection<String> ignoredProperties, boolean forSerialization)
           
 Iterable<AnnotatedField> AnnotatedClass.fields()
           
 

Methods in com.fasterxml.jackson.databind.introspect with parameters of type AnnotatedField
 void POJOPropertyBuilder.addField(AnnotatedField a, String ename, boolean visible, boolean ignored)
           
 String JacksonAnnotationIntrospector.findDeserializationName(AnnotatedField af)
           
 String JacksonAnnotationIntrospector.findSerializationName(AnnotatedField af)
           
 boolean VisibilityChecker.isFieldVisible(AnnotatedField f)
           
 boolean VisibilityChecker.Std.isFieldVisible(AnnotatedField f)
           
 

Method parameters in com.fasterxml.jackson.databind.introspect with type arguments of type AnnotatedField
protected  void AnnotatedClass._addFieldMixIns(Class<?> mixin, Map<String,AnnotatedField> fields)
          Method called to add field mix-ins from given mix-in class (and its fields) into already collected actual fields (from introspected classes and their super-classes)
protected  Map<String,AnnotatedField> AnnotatedClass._findFields(Class<?> c, Map<String,AnnotatedField> fields)
           
 

Uses of AnnotatedField in com.fasterxml.jackson.databind.util
 

Methods in com.fasterxml.jackson.databind.util that return AnnotatedField
 AnnotatedField SimpleBeanPropertyDefinition.getField()
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.