Uses of Class
com.fasterxml.jackson.core.filter.TokenFilter
Packages that use TokenFilter
-
Uses of TokenFilter in com.fasterxml.jackson.core.filter
Subclasses of TokenFilter in com.fasterxml.jackson.core.filterModifier and TypeClassDescriptionclass
SimpleTokenFilter
implementation that takes a singleJsonPointer
and matches a single value accordingly.Fields in com.fasterxml.jackson.core.filter declared as TokenFilterModifier and TypeFieldDescriptionprotected TokenFilter
TokenFilterContext._filter
Filter to use for items in this state (for properties of Objects, elements of Arrays, and root-level values of root context)protected TokenFilter
FilteringGeneratorDelegate._itemFilter
State that applies to the item within container, used where applicable.protected TokenFilter
FilteringParserDelegate._itemFilter
State that applies to the item within container, used where applicable.static final TokenFilter
TokenFilter.INCLUDE_ALL
Marker value that should be used to indicate inclusion of a structured value (sub-tree representing Object or Array), or value of a named property (regardless of type).protected TokenFilter
FilteringGeneratorDelegate.rootFilter
Object consulted to determine whether to write parts of content generator is asked to write or not.protected TokenFilter
FilteringParserDelegate.rootFilter
Object consulted to determine whether to write parts of content generator is asked to write or not.Methods in com.fasterxml.jackson.core.filter that return TokenFilterModifier and TypeMethodDescriptionTokenFilterContext.checkValue
(TokenFilter filter) Method called to check whether value is to be included at current output position, either as Object property, Array element, or root value.JsonPointerBasedFilter.filterStartArray()
TokenFilter.filterStartArray()
Method called to check whether Array value at current output location should be included in output.JsonPointerBasedFilter.filterStartObject()
TokenFilter.filterStartObject()
Method called to check whether Object value at current output location should be included in output.FilteringGeneratorDelegate.getFilter()
FilteringParserDelegate.getFilter()
TokenFilterContext.getFilter()
JsonPointerBasedFilter.includeElement
(int index) TokenFilter.includeElement
(int index) Method called to check whether array element with specified index (zero-based), at current output location, should be included in output.JsonPointerBasedFilter.includeProperty
(String name) TokenFilter.includeProperty
(String name) Method called to check whether property value with specified name, at current output location, should be included in output.TokenFilter.includeRootValue
(int index) Method called to check whether root-level value, at current output location, should be included in output.TokenFilterContext.setFieldName
(String name) Methods in com.fasterxml.jackson.core.filter with parameters of type TokenFilterModifier and TypeMethodDescriptionTokenFilterContext.checkValue
(TokenFilter filter) Method called to check whether value is to be included at current output position, either as Object property, Array element, or root value.TokenFilterContext.createChildArrayContext
(TokenFilter filter, boolean writeStart) TokenFilterContext.createChildObjectContext
(TokenFilter filter, boolean writeStart) static TokenFilterContext
TokenFilterContext.createRootContext
(TokenFilter filter) protected TokenFilterContext
TokenFilterContext.reset
(int type, TokenFilter filter, boolean startWritten) Constructors in com.fasterxml.jackson.core.filter with parameters of type TokenFilterModifierConstructorDescriptionFilteringGeneratorDelegate
(JsonGenerator d, TokenFilter f, boolean includePath, boolean allowMultipleMatches) Deprecated.FilteringGeneratorDelegate
(JsonGenerator d, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches) FilteringParserDelegate
(JsonParser p, TokenFilter f, boolean includePath, boolean allowMultipleMatches) Deprecated.FilteringParserDelegate
(JsonParser p, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches) protected
TokenFilterContext
(int type, TokenFilterContext parent, TokenFilter filter, boolean startHandled)
TokenFilter.Inclusion
argument instead.