Uses of Enum Class
com.fasterxml.jackson.annotation.PropertyAccessor
Packages that use PropertyAccessor
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 PropertyAccessor in com.fasterxml.jackson.annotation
Methods in com.fasterxml.jackson.annotation that return PropertyAccessorModifier and TypeMethodDescriptionstatic PropertyAccessorReturns the enum constant of this class with the specified name.static PropertyAccessor[]PropertyAccessor.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.fasterxml.jackson.annotation with parameters of type PropertyAccessorModifier and TypeMethodDescriptionstatic 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 PropertyAccessorModifier and TypeMethodDescriptionObjectMapper.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 PropertyAccessorModifier and TypeMethodDescriptionMapperBuilder.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 PropertyAccessorModifier and TypeMethodDescriptionVisibilityChecker.Std.withVisibility(PropertyAccessor method, JsonAutoDetect.Visibility v) VisibilityChecker.withVisibility(PropertyAccessor method, JsonAutoDetect.Visibility v) Builder method that will create and return an instance that has specifiedJsonAutoDetect.Visibilityvalue to use for specified property.