Uses of Class
tools.jackson.core.filter.TokenFilter
Packages that use TokenFilter
-
Uses of TokenFilter in tools.jackson.core.filter
Subclasses of TokenFilter in tools.jackson.core.filterModifier and TypeClassDescriptionclassSimpleTokenFilterimplementation that takes a singleJsonPointerand matches a single value accordingly.Fields in tools.jackson.core.filter declared as TokenFilterModifier and TypeFieldDescriptionprotected TokenFilterTokenFilterContext._filterFilter to use for items in this state (for properties of Objects, elements of Arrays, and root-level values of root context)protected TokenFilterFilteringGeneratorDelegate._itemFilterState that applies to the item within container, used where applicable.protected TokenFilterFilteringParserDelegate._itemFilterState that applies to the item within container, used where applicable.static final TokenFilterTokenFilter.INCLUDE_ALLMarker 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 TokenFilterFilteringGeneratorDelegate.rootFilterObject consulted to determine whether to write parts of content generator is asked to write or not.protected TokenFilterFilteringParserDelegate.rootFilterObject consulted to determine whether to write parts of content generator is asked to write or not.Methods in tools.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.setPropertyName(String name) Methods in tools.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, Object currentValue, boolean writeStart) TokenFilterContext.createChildObjectContext(TokenFilter filter, Object currentValue, boolean writeStart) static TokenFilterContextTokenFilterContext.createRootContext(TokenFilter filter) protected TokenFilterContextTokenFilterContext.reset(int type, TokenFilter filter, Object currValue, boolean startWritten) Constructors in tools.jackson.core.filter with parameters of type TokenFilterModifierConstructorDescriptionFilteringGeneratorDelegate(JsonGenerator d, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches) FilteringParserDelegate(JsonParser p, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches) FilteringParserDelegate(JsonParser p, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches, boolean allowNonBlockingParser) protectedTokenFilterContext(int type, TokenFilterContext parent, TokenFilter filter, Object currValue, boolean startHandled)