Uses of Class
com.fasterxml.jackson.annotation.JsonProperty.Access
-
Packages that use JsonProperty.Access 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.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. -
-
Uses of JsonProperty.Access in com.fasterxml.jackson.annotation
Methods in com.fasterxml.jackson.annotation that return JsonProperty.Access Modifier and Type Method Description JsonProperty.Accessaccess()Optional property that may be used to change the way visibility of accessors (getter, field-as-getter) and mutators (constructor parameter, setter, field-as-setter) is determined, either so that otherwise non-visible accessors (like private getters) may be used; or that otherwise visible accessors are ignored.static JsonProperty.AccessJsonProperty.Access. valueOf(String name)Returns the enum constant of this type with the specified name.static JsonProperty.Access[]JsonProperty.Access. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of JsonProperty.Access in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return JsonProperty.Access Modifier and Type Method Description JsonProperty.AccessAnnotationIntrospector. findPropertyAccess(Annotated ann)Method for finding optional access definition for a property, annotated on one of its accessors. -
Uses of JsonProperty.Access in com.fasterxml.jackson.databind.introspect
Methods in com.fasterxml.jackson.databind.introspect that return JsonProperty.Access Modifier and Type Method Description JsonProperty.AccessPOJOPropertyBuilder. findAccess()JsonProperty.AccessAnnotationIntrospectorPair. findPropertyAccess(Annotated ann)JsonProperty.AccessJacksonAnnotationIntrospector. findPropertyAccess(Annotated m)JsonProperty.AccessPOJOPropertyBuilder. removeNonVisible(boolean inferMutators)Deprecated.JsonProperty.AccessPOJOPropertyBuilder. removeNonVisible(boolean inferMutators, POJOPropertiesCollector parent)
-