Package | Description |
---|---|
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 |
Modifier and Type | Method and Description |
---|---|
PropertyFilter |
FilterProvider.findPropertyFilter(Object filterId,
Object valueToFilter)
Lookup method used to find
PropertyFilter that has specified id. |
Modifier and Type | Method and Description |
---|---|
void |
AnyGetterWriter.getAndFilter(Object bean,
JsonGenerator gen,
SerializerProvider provider,
PropertyFilter filter) |
Modifier and Type | Class and Description |
---|---|
class |
SimpleBeanPropertyFilter
Simple
PropertyFilter 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.
|
Modifier and Type | Field and Description |
---|---|
protected PropertyFilter |
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.
|
Modifier and Type | Field and Description |
---|---|
protected Map<String,PropertyFilter> |
SimpleFilterProvider._filtersById
Mappings from ids to filters.
|
Modifier and Type | Method and Description |
---|---|
PropertyFilter |
SimpleFilterProvider.findPropertyFilter(Object filterId,
Object valueToFilter) |
static PropertyFilter |
SimpleBeanPropertyFilter.from(BeanPropertyFilter src)
Helper method to ease transition from
BeanPropertyWriter into
PropertyWriter |
PropertyFilter |
SimpleFilterProvider.getDefaultFilter() |
PropertyFilter |
SimpleFilterProvider.removeFilter(String id) |
Modifier and Type | Method and Description |
---|---|
SimpleFilterProvider |
SimpleFilterProvider.addFilter(String id,
PropertyFilter filter) |
SimpleFilterProvider |
SimpleFilterProvider.setDefaultFilter(PropertyFilter f) |
Modifier and Type | Method and Description |
---|---|
protected PropertyFilter |
StdSerializer.findPropertyFilter(SerializerProvider provider,
Object filterId,
Object valueToFilter)
Helper method used to locate filter that is needed, based on filter id
this serializer was constructed with.
|
Modifier and Type | Method and Description |
---|---|
void |
MapSerializer.serializeFilteredFields(Map<?,?> value,
JsonGenerator gen,
SerializerProvider provider,
PropertyFilter filter)
Deprecated.
|
void |
MapSerializer.serializeFilteredFields(Map<?,?> value,
JsonGenerator gen,
SerializerProvider provider,
PropertyFilter filter,
Object suppressableValue)
Helper method used when we have a JSON Filter to use for potentially
filtering out Map entries.
|
Copyright © 2008–2016 FasterXML. All rights reserved.