Uses of Interface
org.codehaus.jackson.map.ser.BeanPropertyFilter
-
Packages that use BeanPropertyFilter Package Description org.codehaus.jackson.map.ser Contains implementation classes of serialization part of data binding.org.codehaus.jackson.map.ser.impl Contains implementation classes of serialization part of data binding.org.codehaus.jackson.map.ser.std -
-
Uses of BeanPropertyFilter in org.codehaus.jackson.map.ser
Methods in org.codehaus.jackson.map.ser that return BeanPropertyFilter Modifier and Type Method Description abstract BeanPropertyFilterFilterProvider. findFilter(java.lang.Object filterId)Lookup method used to findBeanPropertyFilterthat has specified id. -
Uses of BeanPropertyFilter in org.codehaus.jackson.map.ser.impl
Classes in org.codehaus.jackson.map.ser.impl that implement BeanPropertyFilter Modifier and Type Class Description classSimpleBeanPropertyFilterSimpleBeanPropertyFilterimplementation that only uses property name to determine whether to serialize property as is, or to filter it out.static classSimpleBeanPropertyFilter.FilterExceptFilterFilter implementation which defaults to filtering out unknown properties and only serializes ones explicitly listed.static classSimpleBeanPropertyFilter.SerializeExceptFilterFilter implementation which defaults to serializing all properties, except for ones explicitly listed to be filtered out.Fields in org.codehaus.jackson.map.ser.impl declared as BeanPropertyFilter Modifier and Type Field Description protected BeanPropertyFilterSimpleFilterProvider. _defaultFilterThis 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 org.codehaus.jackson.map.ser.impl with type parameters of type BeanPropertyFilter Modifier and Type Field Description protected java.util.Map<java.lang.String,BeanPropertyFilter>SimpleFilterProvider. _filtersByIdMappings from ids to filters.Methods in org.codehaus.jackson.map.ser.impl that return BeanPropertyFilter Modifier and Type Method Description BeanPropertyFilterSimpleFilterProvider. findFilter(java.lang.Object filterId)BeanPropertyFilterSimpleFilterProvider. getDefaultFilter()BeanPropertyFilterSimpleFilterProvider. removeFilter(java.lang.String id)Methods in org.codehaus.jackson.map.ser.impl with parameters of type BeanPropertyFilter Modifier and Type Method Description SimpleFilterProviderSimpleFilterProvider. addFilter(java.lang.String id, BeanPropertyFilter filter)SimpleFilterProviderSimpleFilterProvider. 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 org.codehaus.jackson.map.ser.impl with type arguments of type BeanPropertyFilter Constructor Description SimpleFilterProvider(java.util.Map<java.lang.String,BeanPropertyFilter> mapping) -
Uses of BeanPropertyFilter in org.codehaus.jackson.map.ser.std
Methods in org.codehaus.jackson.map.ser.std that return BeanPropertyFilter Modifier and Type Method Description protected BeanPropertyFilterBeanSerializerBase. findFilter(SerializerProvider provider)Helper method used to locate filter that is needed, based on filter id this serializer was constructed with.
-