Java com.fasterxml.jackson.annotation PropertyAccessor fields, constructors, methods, implement or subclass

Example usage for Java com.fasterxml.jackson.annotation PropertyAccessor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.fasterxml.jackson.annotation PropertyAccessor.

The text is from its open source code.

Field

PropertyAccessorGETTER
Getters are methods used to get a POJO field value for serialization, or, under certain conditions also for de-serialization.
PropertyAccessorSETTER
Setters are methods used to set a POJO value for deserialization.
PropertyAccessorCREATOR
Creators are constructors and (static) factory methods used to construct POJO instances for deserialization
PropertyAccessorFIELD
Field refers to fields of regular Java objects.
PropertyAccessorIS_GETTER
"Is getters" are getter-like methods that are named "isXxx" (instead of "getXxx" for getters) and return boolean value (either primitive, or java.lang.Boolean ).
PropertyAccessorALL
This pseudo-type indicates that all accessors are affected.