Uses of Class
com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Packages that use JsonIgnoreProperties.Value
Package
Description
Public core annotations, most of which are used to configure how
Data Mapping/Binding works.
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode), as well as
writing Java Objects and trees as JSON.Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
com.fasterxml.jackson.databind).Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
-
Uses of JsonIgnoreProperties.Value in com.fasterxml.jackson.annotation
Fields in com.fasterxml.jackson.annotation declared as JsonIgnoreProperties.ValueModifier and TypeFieldDescriptionprotected static final JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.EMPTYDefault instance has no explicitly ignored fields, does not ignore unknowns, does not explicitly allow getters/setters (that is, ignorals apply to both), but does use merging for combining overrides with base settingsMethods in com.fasterxml.jackson.annotation that return JsonIgnoreProperties.ValueModifier and TypeMethodDescriptionstatic JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.construct(Set<String> ignored, boolean ignoreUnknown, boolean allowGetters, boolean allowSetters, boolean merge) Factory method that may be used (although is NOT the recommended way) to construct an instance from a full set of properties.static JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.empty()Accessor for default instances which has "empty" settings; that is: No explicitly defined fields to ignore Does not ignore unknown fields Does not "allow" getters if property ignored (that is, ignorals apply to both setter and getter) Does not "allow" setters if property ignored (that is, ignorals apply to both setter and getter) Does use merge when combining overrides to base settings, such that `true` settings for any of the properties results in `true`, and names of fields are combined (union)static JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.forIgnoredProperties(String... propNames) static JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.forIgnoredProperties(Set<String> propNames) static JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.forIgnoreUnknown(boolean state) static JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.from(JsonIgnoreProperties src) static JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.merge(JsonIgnoreProperties.Value base, JsonIgnoreProperties.Value overrides) Helper method that will try to combine values from twoJsonIgnoreProperties.Valueinstances, using one as base settings, and the other as overrides to use instead of base values when defined; base values are only use if override does not specify a value (matching value is null or logically missing).static JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.mergeAll(JsonIgnoreProperties.Value... values) JsonIgnoreProperties.Value.withAllowGetters()JsonIgnoreProperties.Value.withAllowSetters()JsonIgnoreProperties.Value.withIgnored(String... ignored) JsonIgnoreProperties.Value.withIgnored(Set<String> ignored) JsonIgnoreProperties.Value.withIgnoreUnknown()JsonIgnoreProperties.Value.withMerge()JsonIgnoreProperties.Value.withoutAllowGetters()JsonIgnoreProperties.Value.withoutAllowSetters()JsonIgnoreProperties.Value.withoutIgnored()JsonIgnoreProperties.Value.withoutIgnoreUnknown()JsonIgnoreProperties.Value.withoutMerge()JsonIgnoreProperties.Value.withOverrides(JsonIgnoreProperties.Value overrides) Mutant factory method that merges values of this value with given override values, so that any explicitly defined inclusion in overrides has precedence over settings of this value instance.Methods in com.fasterxml.jackson.annotation with parameters of type JsonIgnoreProperties.ValueModifier and TypeMethodDescriptionstatic JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.merge(JsonIgnoreProperties.Value base, JsonIgnoreProperties.Value overrides) Helper method that will try to combine values from twoJsonIgnoreProperties.Valueinstances, using one as base settings, and the other as overrides to use instead of base values when defined; base values are only use if override does not specify a value (matching value is null or logically missing).static JsonIgnoreProperties.ValueJsonIgnoreProperties.Value.mergeAll(JsonIgnoreProperties.Value... values) JsonIgnoreProperties.Value.withOverrides(JsonIgnoreProperties.Value overrides) Mutant factory method that merges values of this value with given override values, so that any explicitly defined inclusion in overrides has precedence over settings of this value instance. -
Uses of JsonIgnoreProperties.Value in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return JsonIgnoreProperties.ValueModifier and TypeMethodDescriptionAnnotationIntrospector.findPropertyIgnoralByName(MapperConfig<?> config, Annotated ann) Method for finding information about properties to ignore either by name, or by more general specification ("ignore all unknown").AnnotationIntrospector.findPropertyIgnorals(Annotated ac) Deprecated. -
Uses of JsonIgnoreProperties.Value in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as JsonIgnoreProperties.ValueModifier and TypeFieldDescriptionprotected JsonIgnoreProperties.ValueConfigOverride._ignoralsDefinitions of property ignoral (whether to serialize, deserialize given logical property) overrides, if any.Methods in com.fasterxml.jackson.databind.cfg that return JsonIgnoreProperties.ValueModifier and TypeMethodDescriptionabstract JsonIgnoreProperties.ValueMapperConfig.getDefaultPropertyIgnorals(Class<?> baseType) Accessor for default property ignorals to use, if any, for given base type, based on config overrides settings (seeMapperConfig.findConfigOverride(Class)).abstract JsonIgnoreProperties.ValueMapperConfig.getDefaultPropertyIgnorals(Class<?> baseType, AnnotatedClass actualClass) Helper method that may be called to see if there are property ignoral definitions from annotations (viaAnnotatedClass) or through "config overrides".MapperConfigBase.getDefaultPropertyIgnorals(Class<?> type) MapperConfigBase.getDefaultPropertyIgnorals(Class<?> baseType, AnnotatedClass actualClass) ConfigOverride.getIgnorals()Methods in com.fasterxml.jackson.databind.cfg with parameters of type JsonIgnoreProperties.ValueModifier and TypeMethodDescriptionMutableConfigOverride.setIgnorals(JsonIgnoreProperties.Value v) -
Uses of JsonIgnoreProperties.Value in com.fasterxml.jackson.databind.introspect
Methods in com.fasterxml.jackson.databind.introspect that return JsonIgnoreProperties.ValueModifier and TypeMethodDescriptionAnnotationIntrospectorPair.findPropertyIgnoralByName(MapperConfig<?> config, Annotated ann) JacksonAnnotationIntrospector.findPropertyIgnoralByName(MapperConfig<?> config, Annotated a) AnnotationIntrospectorPair.findPropertyIgnorals(Annotated a) Deprecated.JacksonAnnotationIntrospector.findPropertyIgnorals(Annotated ac) Deprecated.
AnnotationIntrospector.findPropertyIgnoralByName(com.fasterxml.jackson.databind.cfg.MapperConfig<?>, com.fasterxml.jackson.databind.introspect.Annotated)instead.