com.fasterxml.jackson.databind.ser.impl
Class SimpleBeanPropertyFilter.SerializeExceptFilter
java.lang.Object
com.fasterxml.jackson.databind.ser.impl.SimpleBeanPropertyFilter
com.fasterxml.jackson.databind.ser.impl.SimpleBeanPropertyFilter.SerializeExceptFilter
- All Implemented Interfaces:
- BeanPropertyFilter
- Enclosing class:
- SimpleBeanPropertyFilter
public static class SimpleBeanPropertyFilter.SerializeExceptFilter
- extends SimpleBeanPropertyFilter
Filter implementation which defaults to serializing all
properties, except for ones explicitly listed to be filtered out.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
_propertiesToExclude
protected final Set<String> _propertiesToExclude
- Set of property names to filter out.
SimpleBeanPropertyFilter.SerializeExceptFilter
public SimpleBeanPropertyFilter.SerializeExceptFilter(Set<String> properties)
serializeAsField
public void serializeAsField(Object bean,
com.fasterxml.jackson.core.JsonGenerator jgen,
SerializerProvider provider,
BeanPropertyWriter writer)
throws Exception
- Description copied from interface:
BeanPropertyFilter
- Method called by
BeanSerializer to let filter decide what to do with
given bean property value: the usual choices are to either filter out (i.e.
do nothing) or write using given BeanPropertyWriter, although filters
can choose other to do something different altogether.
- Parameters:
bean - Bean of which property value to serializejgen - Generator use for serializing valueprovider - Provider that can be used for accessing dynamic aspects of serialization
processingwriter - Default bean property serializer to use
- Throws:
Exception
Copyright © 2012 fasterxml.com. All Rights Reserved.