Uses of Class
com.fasterxml.jackson.annotation.JsonAutoDetect.Value
-
Packages that use JsonAutoDetect.Value Package Description com.fasterxml.jackson.annotation Public core annotations, most of which are used to configure how Data Mapping/Binding works.com.fasterxml.jackson.databind 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.com.fasterxml.jackson.databind.cfg 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).com.fasterxml.jackson.databind.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. -
-
Uses of JsonAutoDetect.Value in com.fasterxml.jackson.annotation
Fields in com.fasterxml.jackson.annotation declared as JsonAutoDetect.Value Modifier and Type Field Description protected static JsonAutoDetect.ValueJsonAutoDetect.Value. DEFAULTDefault instance with baseline visibility checking: Only public fields visible Only public getters, is-getters visible All setters (regardless of access) visible Only public Creators visibleprotected static JsonAutoDetect.ValueJsonAutoDetect.Value. NO_OVERRIDESEmpty instance that specifies no overrides, that is, all visibility levels set asJsonAutoDetect.Visibility.DEFAULT.Methods in com.fasterxml.jackson.annotation with parameters of type JsonAutoDetect.Value Modifier and Type Method Description static JsonAutoDetect.ValueJsonAutoDetect.Value. merge(JsonAutoDetect.Value base, JsonAutoDetect.Value overrides)JsonAutoDetect.ValueJsonAutoDetect.Value. withOverrides(JsonAutoDetect.Value overrides) -
Uses of JsonAutoDetect.Value in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type JsonAutoDetect.Value Modifier and Type Method Description ObjectMapperObjectMapper. setDefaultVisibility(JsonAutoDetect.Value vis)Method for setting auto-detection visibility definition defaults, which are in effect unless overridden by annotations (likeJsonAutoDetect) or per-type visibility overrides. -
Uses of JsonAutoDetect.Value in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as JsonAutoDetect.Value Modifier and Type Field Description protected JsonAutoDetect.ValueConfigOverride. _visibilityOverrides for auto-detection visibility rules for this type.Methods in com.fasterxml.jackson.databind.cfg that return JsonAutoDetect.Value Modifier and Type Method Description JsonAutoDetect.ValueConfigOverride. getVisibility()Methods in com.fasterxml.jackson.databind.cfg with parameters of type JsonAutoDetect.Value Modifier and Type Method Description MutableConfigOverrideMutableConfigOverride. setVisibility(JsonAutoDetect.Value v) -
Uses of JsonAutoDetect.Value in com.fasterxml.jackson.databind.introspect
Methods in com.fasterxml.jackson.databind.introspect with parameters of type JsonAutoDetect.Value Modifier and Type Method Description static VisibilityChecker.StdVisibilityChecker.Std. construct(JsonAutoDetect.Value vis)VisibilityChecker.StdVisibilityChecker.Std. withOverrides(JsonAutoDetect.Value vis)TVisibilityChecker. withOverrides(JsonAutoDetect.Value vis)Method that can be used for merging default values from `this` instance with specified overrides; and either return `this` if overrides had no effect (that is, result would be equal), or a new instance with merged visibility settings.
-