Uses of Class
com.fasterxml.jackson.core.filter.TokenFilter
-
Packages that use TokenFilter Package Description com.fasterxml.jackson.core.filter -
-
Uses of TokenFilter in com.fasterxml.jackson.core.filter
Subclasses of TokenFilter in com.fasterxml.jackson.core.filter Modifier and Type Class Description classJsonPointerBasedFilterSimpleTokenFilterimplementation that takes a singleJsonPointerand matches a single value accordingly.Fields in com.fasterxml.jackson.core.filter declared as TokenFilter Modifier and Type Field Description protected 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 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 com.fasterxml.jackson.core.filter that return TokenFilter Modifier and Type Method Description TokenFilterTokenFilterContext. 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.TokenFilterJsonPointerBasedFilter. filterStartArray()TokenFilterTokenFilter. filterStartArray()Method called to check whether Array value at current output location should be included in output.TokenFilterJsonPointerBasedFilter. filterStartObject()TokenFilterTokenFilter. filterStartObject()Method called to check whether Object value at current output location should be included in output.TokenFilterFilteringGeneratorDelegate. getFilter()TokenFilterFilteringParserDelegate. getFilter()TokenFilterTokenFilterContext. getFilter()TokenFilterJsonPointerBasedFilter. includeElement(int index)TokenFilterTokenFilter. includeElement(int index)Method called to check whether array element with specified index (zero-based), at current output location, should be included in output.TokenFilterJsonPointerBasedFilter. includeProperty(java.lang.String name)TokenFilterTokenFilter. includeProperty(java.lang.String name)Method called to check whether property value with specified name, at current output location, should be included in output.TokenFilterTokenFilter. includeRootValue(int index)Method called to check whether root-level value, at current output location, should be included in output.TokenFilterTokenFilterContext. setFieldName(java.lang.String name)Methods in com.fasterxml.jackson.core.filter with parameters of type TokenFilter Modifier and Type Method Description TokenFilterTokenFilterContext. 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.TokenFilterContextTokenFilterContext. createChildArrayContext(TokenFilter filter, boolean writeStart)TokenFilterContextTokenFilterContext. createChildObjectContext(TokenFilter filter, boolean writeStart)static TokenFilterContextTokenFilterContext. createRootContext(TokenFilter filter)protected TokenFilterContextTokenFilterContext. reset(int type, TokenFilter filter, boolean startWritten)Constructors in com.fasterxml.jackson.core.filter with parameters of type TokenFilter Constructor Description FilteringGeneratorDelegate(JsonGenerator d, TokenFilter f, boolean includePath, boolean allowMultipleMatches)Deprecated.since 2.12 Use the constructor that takesTokenFilter.Inclusionargument instead.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)TokenFilterContext(int type, TokenFilterContext parent, TokenFilter filter, boolean startHandled)
-