Uses of Class
com.fasterxml.jackson.annotation.PropertyAccessor
-
Packages that use PropertyAccessor 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 PropertyAccessor in com.fasterxml.jackson.annotation
Methods in com.fasterxml.jackson.annotation that return PropertyAccessor Modifier and Type Method Description static PropertyAccessorPropertyAccessor. valueOf(String name)Returns the enum constant of this type with the specified name.static PropertyAccessor[]PropertyAccessor. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.annotation with parameters of type PropertyAccessor Modifier and Type Method Description static JsonAutoDetect.ValueJsonAutoDetect.Value. construct(PropertyAccessor acc, JsonAutoDetect.Visibility visibility)Factory method for constructing instance with visibility of specified accessor (or, in case ofALL, all of them) set as specified; and the rest (if any) set asJsonAutoDetect.Visibility.DEFAULT). -
Uses of PropertyAccessor in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type PropertyAccessor Modifier and Type Method Description ObjectMapperObjectMapper. setVisibility(PropertyAccessor forMethod, JsonAutoDetect.Visibility visibility)Convenience method that allows changing configuration for underlyingVisibilityCheckers, to change details of what kinds of properties are auto-detected. -
Uses of PropertyAccessor in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg with parameters of type PropertyAccessor Modifier and Type Method Description BMapperBuilder. visibility(PropertyAccessor forMethod, JsonAutoDetect.Visibility visibility) -
Uses of PropertyAccessor in com.fasterxml.jackson.databind.introspect
Methods in com.fasterxml.jackson.databind.introspect with parameters of type PropertyAccessor Modifier and Type Method Description VisibilityChecker.StdVisibilityChecker.Std. withVisibility(PropertyAccessor method, JsonAutoDetect.Visibility v)TVisibilityChecker. withVisibility(PropertyAccessor method, JsonAutoDetect.Visibility v)Builder method that will create and return an instance that has specifiedJsonAutoDetect.Visibilityvalue to use for specified property.
-