Uses of Class
org.codehaus.jackson.map.introspect.AnnotatedField

Packages that use AnnotatedField
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.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.xc Package that contains Xml Compatibility functionality for Jackson. 
 

Uses of AnnotatedField in org.codehaus.jackson.map
 

Methods in org.codehaus.jackson.map with parameters of type AnnotatedField
abstract  String AnnotationIntrospector.findDeserializablePropertyName(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.findDeserializablePropertyName(AnnotatedField af)
           
abstract  String AnnotationIntrospector.findSerializablePropertyName(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.findSerializablePropertyName(AnnotatedField af)
           
abstract  boolean AnnotationIntrospector.isIgnorableField(AnnotatedField f)
          Method for checking whether there is an annotation that indicates that given field should be ignored for all operations (serialization, deserialization).
 boolean AnnotationIntrospector.Pair.isIgnorableField(AnnotatedField f)
           
 

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

Methods in org.codehaus.jackson.map.deser with parameters of type AnnotatedField
protected  SettableBeanProperty BeanDeserializerFactory.constructSettableProperty(DeserializationConfig config, BasicBeanDescription beanDesc, String name, AnnotatedField field)
           
 

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

Methods in org.codehaus.jackson.map.introspect that return AnnotatedField
protected  AnnotatedField AnnotatedClass._constructField(Field f)
           
 

Methods in org.codehaus.jackson.map.introspect that return types with arguments of type AnnotatedField
 LinkedHashMap<String,AnnotatedField> BasicBeanDescription._findPropertyFields(VisibilityChecker<?> vchecker, Collection<String> ignoredProperties, boolean forSerialization)
           
 Iterable<AnnotatedField> AnnotatedClass.fields()
           
 LinkedHashMap<String,AnnotatedField> BasicBeanDescription.findDeserializableFields(VisibilityChecker<?> vchecker, Collection<String> ignoredProperties)
           
 LinkedHashMap<String,AnnotatedField> BasicBeanDescription.findSerializableFields(VisibilityChecker<?> vchecker, Collection<String> ignoredProperties)
           
 Iterable<AnnotatedField> AnnotatedClass.ignoredFields()
           
 

Methods in org.codehaus.jackson.map.introspect with parameters of type AnnotatedField
 String NopAnnotationIntrospector.findDeserializablePropertyName(AnnotatedField af)
           
 String JacksonAnnotationIntrospector.findDeserializablePropertyName(AnnotatedField af)
           
 String NopAnnotationIntrospector.findSerializablePropertyName(AnnotatedField af)
           
 String JacksonAnnotationIntrospector.findSerializablePropertyName(AnnotatedField af)
           
 boolean VisibilityChecker.isFieldVisible(AnnotatedField f)
           
 boolean VisibilityChecker.Std.isFieldVisible(AnnotatedField f)
           
 boolean NopAnnotationIntrospector.isIgnorableField(AnnotatedField f)
           
 boolean JacksonAnnotationIntrospector.isIgnorableField(AnnotatedField f)
           
 

Method parameters in org.codehaus.jackson.map.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  void AnnotatedClass._addFields(Map<String,AnnotatedField> fields, Class<?> c)
           
 

Uses of AnnotatedField in org.codehaus.jackson.xc
 

Methods in org.codehaus.jackson.xc with parameters of type AnnotatedField
 String JaxbAnnotationIntrospector.findDeserializablePropertyName(AnnotatedField af)
           
 String JaxbAnnotationIntrospector.findSerializablePropertyName(AnnotatedField af)
           
 boolean JaxbAnnotationIntrospector.isIgnorableField(AnnotatedField f)
           
protected  boolean JaxbAnnotationIntrospector.isInvisible(AnnotatedField f)
          Whether the specified field is invisible, per the JAXB visibility rules.