Uses of Interface
com.fasterxml.jackson.databind.ser.BeanPropertyFilter

Packages that use BeanPropertyFilter
com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding. 
com.fasterxml.jackson.databind.ser.impl Contains implementation classes of serialization part of data binding. 
com.fasterxml.jackson.databind.ser.std   
 

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

Methods in com.fasterxml.jackson.databind.ser that return BeanPropertyFilter
abstract  BeanPropertyFilter FilterProvider.findFilter(Object filterId)
          Lookup method used to find BeanPropertyFilter that has specified id.
 

Uses of BeanPropertyFilter in com.fasterxml.jackson.databind.ser.impl
 

Classes in com.fasterxml.jackson.databind.ser.impl that implement BeanPropertyFilter
 class SimpleBeanPropertyFilter
          Simple BeanPropertyFilter implementation that only uses property name to determine whether to serialize property as is, or to filter it out.
static class SimpleBeanPropertyFilter.FilterExceptFilter
          Filter implementation which defaults to filtering out unknown properties and only serializes ones explicitly listed.
static class SimpleBeanPropertyFilter.SerializeExceptFilter
          Filter implementation which defaults to serializing all properties, except for ones explicitly listed to be filtered out.
 

Fields in com.fasterxml.jackson.databind.ser.impl declared as BeanPropertyFilter
protected  BeanPropertyFilter SimpleFilterProvider._defaultFilter
          This is the filter we return in case no mapping was found for given id; default is 'null' (in which case caller typically reports an error), but can be set to an explicit filter.
 

Fields in com.fasterxml.jackson.databind.ser.impl with type parameters of type BeanPropertyFilter
protected  Map<String,BeanPropertyFilter> SimpleFilterProvider._filtersById
          Mappings from ids to filters.
 

Methods in com.fasterxml.jackson.databind.ser.impl that return BeanPropertyFilter
 BeanPropertyFilter SimpleFilterProvider.findFilter(Object filterId)
           
 BeanPropertyFilter SimpleFilterProvider.getDefaultFilter()
           
 BeanPropertyFilter SimpleFilterProvider.removeFilter(String id)
           
 

Methods in com.fasterxml.jackson.databind.ser.impl with parameters of type BeanPropertyFilter
 SimpleFilterProvider SimpleFilterProvider.addFilter(String id, BeanPropertyFilter filter)
           
 SimpleFilterProvider SimpleFilterProvider.setDefaultFilter(BeanPropertyFilter f)
          Method for defining filter to return for "unknown" filters; cases where there is no mapping from given id to an explicit filter.
 

Constructor parameters in com.fasterxml.jackson.databind.ser.impl with type arguments of type BeanPropertyFilter
SimpleFilterProvider(Map<String,BeanPropertyFilter> mapping)
           
 

Uses of BeanPropertyFilter in com.fasterxml.jackson.databind.ser.std
 

Methods in com.fasterxml.jackson.databind.ser.std that return BeanPropertyFilter
protected  BeanPropertyFilter BeanSerializerBase.findFilter(SerializerProvider provider)
          Helper method used to locate filter that is needed, based on filter id this serializer was constructed with.
 



Copyright © 2012 fasterxml.com. All Rights Reserved.