Uses of Class
com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
-
Packages that use JsonIncludeProperties.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 JsonIncludeProperties.Value in com.fasterxml.jackson.annotation
Fields in com.fasterxml.jackson.annotation declared as JsonIncludeProperties.Value Modifier and Type Field Description protected static JsonIncludeProperties.ValueJsonIncludeProperties.Value. ALLDefault instance has no explicitly included fieldsMethods in com.fasterxml.jackson.annotation that return JsonIncludeProperties.Value Modifier and Type Method Description static JsonIncludeProperties.ValueJsonIncludeProperties.Value. all()static JsonIncludeProperties.ValueJsonIncludeProperties.Value. from(JsonIncludeProperties src)JsonIncludeProperties.ValueJsonIncludeProperties.Value. withOverrides(JsonIncludeProperties.Value overrides)Mutant factory method to override the current value with an another, merging the included fields so that only entries that exist in both original and override set are included, taking into account that "undefined"JsonIncludeProperties.Values do not count ("undefined" meaning thatgetIncluded()returnsnull).Methods in com.fasterxml.jackson.annotation with parameters of type JsonIncludeProperties.Value Modifier and Type Method Description JsonIncludeProperties.ValueJsonIncludeProperties.Value. withOverrides(JsonIncludeProperties.Value overrides)Mutant factory method to override the current value with an another, merging the included fields so that only entries that exist in both original and override set are included, taking into account that "undefined"JsonIncludeProperties.Values do not count ("undefined" meaning thatgetIncluded()returnsnull). -
Uses of JsonIncludeProperties.Value in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return JsonIncludeProperties.Value Modifier and Type Method Description JsonIncludeProperties.ValueAnnotationIntrospector. findPropertyInclusionByName(MapperConfig<?> config, Annotated ann)Method for finding information about names of properties to included. -
Uses of JsonIncludeProperties.Value in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg that return JsonIncludeProperties.Value Modifier and Type Method Description abstract JsonIncludeProperties.ValueMapperConfig. getDefaultPropertyInclusions(Class<?> baseType, AnnotatedClass actualClass)Helper method that may be called to see if there are property inclusion definitions from annotations (viaAnnotatedClass).JsonIncludeProperties.ValueMapperConfigBase. getDefaultPropertyInclusions(Class<?> baseType, AnnotatedClass actualClass) -
Uses of JsonIncludeProperties.Value in com.fasterxml.jackson.databind.introspect
Methods in com.fasterxml.jackson.databind.introspect that return JsonIncludeProperties.Value Modifier and Type Method Description JsonIncludeProperties.ValueAnnotationIntrospectorPair. findPropertyInclusionByName(MapperConfig<?> config, Annotated a)JsonIncludeProperties.ValueJacksonAnnotationIntrospector. findPropertyInclusionByName(MapperConfig<?> config, Annotated a)
-