Uses of Class
com.fasterxml.jackson.databind.PropertyName
-
Packages that use PropertyName Package Description 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.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces.com.fasterxml.jackson.databind.exc com.fasterxml.jackson.databind.ext Contains extended support for "external" packages: things that may or may not be present in runtime environment, but that are commonly enough used so that explicit support can be added.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.com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.impl Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.std com.fasterxml.jackson.databind.util Utility classes for Mapper package. -
-
Uses of PropertyName in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as PropertyName Modifier and Type Field Description protected PropertyNameBeanProperty.Std. _nameprotected PropertyNameBeanProperty.Std. _wrapperNamestatic PropertyNamePropertyName. NO_NAMESpecial placeholder value that indicates that there is no name associated.static PropertyNamePropertyName. USE_DEFAULTSpecial placeholder value that indicates that name to use should be based on the standard heuristics.Methods in com.fasterxml.jackson.databind that return PropertyName Modifier and Type Method Description static PropertyNamePropertyName. construct(String simpleName)static PropertyNamePropertyName. construct(String simpleName, String ns)PropertyNameAnnotationIntrospector. findNameForDeserialization(Annotated a)Method for checking whether given property accessors (method, field) has an annotation that suggests property name to use for deserialization (reading JSON into POJOs).PropertyNameAnnotationIntrospector. findNameForSerialization(Annotated a)Method for checking whether given property accessors (method, field) has an annotation that suggests property name to use for serialization.PropertyNameAnnotationIntrospector. findRootName(AnnotatedClass ac)Method for locating name used as "root name" (for use by some serializers when outputting root-level object -- mostly for XML compatibility purposes) for given class, if one is defined.PropertyNameAnnotationIntrospector. findWrapperName(Annotated ann)Method used to check if specified property has annotation that indicates that it should be wrapped in an element; and if so, name to use.PropertyNameBeanProperty.Bogus. getFullName()PropertyNameBeanProperty. getFullName()Method for getting full name definition, including possible format-specific additional properties (such as namespace when using XML backend).PropertyNameBeanProperty.Std. getFullName()PropertyNameBeanProperty.Bogus. getWrapperName()PropertyNameBeanProperty. getWrapperName()If property is indicated to be wrapped, name of wrapper element to use.PropertyNameBeanProperty.Std. getWrapperName()PropertyNamePropertyName. internSimpleName()PropertyNamePropertyName. withNamespace(String ns)Fluent factory method for constructing an instance with different namespace.PropertyNamePropertyName. withSimpleName(String simpleName)Fluent factory method for constructing an instance with different simple name.Methods in com.fasterxml.jackson.databind that return types with arguments of type PropertyName Modifier and Type Method Description List<PropertyName>BeanProperty.Bogus. findAliases(MapperConfig<?> config)List<PropertyName>BeanProperty. findAliases(MapperConfig<?> config)Method for accessing set of possible alternate names that are accepted during deserialization.List<PropertyName>BeanProperty.Std. findAliases(MapperConfig<?> config)List<PropertyName>AnnotationIntrospector. findPropertyAliases(Annotated ann)Method called to find if given property has alias(es) defined.Methods in com.fasterxml.jackson.databind with parameters of type PropertyName Modifier and Type Method Description DeserializationConfigDeserializationConfig. withRootName(PropertyName rootName)ObjectReaderObjectReader. withRootName(PropertyName rootName)ObjectWriterObjectWriter. withRootName(PropertyName rootName)SerializationConfigSerializationConfig. withRootName(PropertyName rootName)Constructors in com.fasterxml.jackson.databind with parameters of type PropertyName Constructor Description Std(PropertyName name, JavaType type, PropertyName wrapperName, AnnotatedMember member, PropertyMetadata metadata)Std(PropertyName name, JavaType type, PropertyName wrapperName, Annotations contextAnnotations, AnnotatedMember member, PropertyMetadata metadata)Deprecated.Since 2.9 -
Uses of PropertyName in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as PropertyName Modifier and Type Field Description protected PropertyNameMapperConfigBase. _rootNameExplicitly defined root name to use, if any; if empty String, will disable root-name wrapping; if null, will use defaultsMethods in com.fasterxml.jackson.databind.cfg that return PropertyName Modifier and Type Method Description abstract PropertyNameMapperConfig. findRootName(JavaType rootType)abstract PropertyNameMapperConfig. findRootName(Class<?> rawRootType)PropertyNameMapperConfigBase. findRootName(JavaType rootType)PropertyNameMapperConfigBase. findRootName(Class<?> rawRootType)PropertyNameMapperConfigBase. getFullRootName()Methods in com.fasterxml.jackson.databind.cfg with parameters of type PropertyName Modifier and Type Method Description abstract TMapperConfigBase. withRootName(PropertyName rootName)Method for constructing and returning a new instance with different root name to use (none, if null).Constructors in com.fasterxml.jackson.databind.cfg with parameters of type PropertyName Constructor Description MapperConfigBase(MapperConfigBase<CFG,T> src, PropertyName rootName) -
Uses of PropertyName in com.fasterxml.jackson.databind.deser
Fields in com.fasterxml.jackson.databind.deser declared as PropertyName Modifier and Type Field Description protected PropertyNameSettableBeanProperty. _propNameLogical name of the property (often but not always derived from the setter method name)protected PropertyNameSettableBeanProperty. _wrapperNameprotected static PropertyNameBeanDeserializerBase. TEMP_PROPERTY_NAMEprotected static PropertyNameBasicDeserializerFactory. UNWRAPPED_CREATOR_PARAM_NAMEWe need a placeholder for creator properties that don't have name but are marked with `@JsonWrapped` annotation.Methods in com.fasterxml.jackson.databind.deser that return PropertyName Modifier and Type Method Description PropertyNameSettableBeanProperty. getFullName()PropertyNameSettableBeanProperty. getWrapperName()Methods in com.fasterxml.jackson.databind.deser that return types with arguments of type PropertyName Modifier and Type Method Description protected Map<String,List<PropertyName>>BeanDeserializerBuilder. _collectAliases(Collection<SettableBeanProperty> props)Methods in com.fasterxml.jackson.databind.deser with parameters of type PropertyName Modifier and Type Method Description voidBeanDeserializerBuilder. addInjectable(PropertyName propName, JavaType propType, Annotations contextAnnotations, AnnotatedMember member, Object valueId)protected SettableBeanPropertyBasicDeserializerFactory. constructCreatorProperty(DeserializationContext ctxt, BeanDescription beanDesc, PropertyName name, int index, AnnotatedParameter param, com.fasterxml.jackson.annotation.JacksonInject.Value injectable)Method that will construct a property object that represents a logical property passed via Creator (constructor or static factory method)SettableBeanPropertyBeanDeserializerBase. findProperty(PropertyName propertyName)SettableBeanPropertyBeanDeserializerBuilder. findProperty(PropertyName propertyName)booleanBeanDeserializerBuilder. hasProperty(PropertyName propertyName)SettableBeanPropertyBeanDeserializerBuilder. removeProperty(PropertyName name)SettableBeanPropertyCreatorProperty. withName(PropertyName newName)SettableBeanPropertySettableBeanProperty.Delegating. withName(PropertyName newName)abstract SettableBeanPropertySettableBeanProperty. withName(PropertyName newName)Fluent factory method for constructing and returning a new instance with specified property name.Constructors in com.fasterxml.jackson.databind.deser with parameters of type PropertyName Constructor Description CreatorProperty(CreatorProperty src, PropertyName newName)CreatorProperty(PropertyName name, JavaType type, PropertyName wrapperName, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedParameter param, int index, Object injectableValueId, PropertyMetadata metadata)SettableBeanProperty(SettableBeanProperty src, PropertyName newName)Copy-with-deserializer-change constructor for sub-classes to use.SettableBeanProperty(PropertyName propName, JavaType type, PropertyMetadata metadata, JsonDeserializer<Object> valueDeser)Constructor only used byObjectIdValueProperty.SettableBeanProperty(PropertyName propName, JavaType type, PropertyName wrapper, TypeDeserializer typeDeser, Annotations contextAnnotations, PropertyMetadata metadata) -
Uses of PropertyName in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as PropertyName Modifier and Type Field Description protected PropertyNameNullsFailProvider. _namePropertyNameObjectIdReader. propertyNameMethods in com.fasterxml.jackson.databind.deser.impl that return PropertyName Modifier and Type Method Description PropertyNameCreatorCandidate. explicitParamName(int i)PropertyNameCreatorCandidate. findImplicitParamName(int i)PropertyNameCreatorCandidate.Param. fullName()PropertyNameCreatorCandidate. paramName(int i)Methods in com.fasterxml.jackson.databind.deser.impl with parameters of type PropertyName Modifier and Type Method Description static ObjectIdReaderObjectIdReader. construct(JavaType idType, PropertyName propName, com.fasterxml.jackson.annotation.ObjectIdGenerator<?> generator, JsonDeserializer<?> deser, SettableBeanProperty idProp, com.fasterxml.jackson.annotation.ObjectIdResolver resolver)Factory method called byBeanSerializerBasewith the initial information based on standard settings for the type for which serializer is being built.SettableBeanPropertyFieldProperty. withName(PropertyName newName)SettableBeanPropertyMethodProperty. withName(PropertyName newName)SettableBeanPropertyObjectIdReferenceProperty. withName(PropertyName newName)SettableBeanPropertyObjectIdValueProperty. withName(PropertyName newName)SettableBeanPropertySetterlessProperty. withName(PropertyName newName)Method parameters in com.fasterxml.jackson.databind.deser.impl with type arguments of type PropertyName Modifier and Type Method Description static BeanPropertyMapBeanPropertyMap. construct(Collection<SettableBeanProperty> props, boolean caseInsensitive, Map<String,List<PropertyName>> aliasMapping)Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type PropertyName Constructor Description FieldProperty(FieldProperty src, PropertyName newName)MethodProperty(MethodProperty src, PropertyName newName)NullsFailProvider(PropertyName name, JavaType type)ObjectIdReader(JavaType t, PropertyName propName, com.fasterxml.jackson.annotation.ObjectIdGenerator<?> gen, JsonDeserializer<?> deser, SettableBeanProperty idProp, com.fasterxml.jackson.annotation.ObjectIdResolver resolver)ObjectIdReferenceProperty(ObjectIdReferenceProperty src, PropertyName newName)ObjectIdValueProperty(ObjectIdValueProperty src, PropertyName newName)SetterlessProperty(SetterlessProperty src, PropertyName newName)ValueInjector(PropertyName propName, JavaType type, AnnotatedMember mutator, Object valueId)ValueInjector(PropertyName propName, JavaType type, Annotations contextAnnotations, AnnotatedMember mutator, Object valueId)Deprecated.in 2.9 (remove from 3.0)Constructor parameters in com.fasterxml.jackson.databind.deser.impl with type arguments of type PropertyName Constructor Description BeanPropertyMap(boolean caseInsensitive, Collection<SettableBeanProperty> props, Map<String,List<PropertyName>> aliasDefs) -
Uses of PropertyName in com.fasterxml.jackson.databind.exc
Fields in com.fasterxml.jackson.databind.exc declared as PropertyName Modifier and Type Field Description protected PropertyNameInvalidNullException. _propertyNameName of property, if known, for which null was encountered.Methods in com.fasterxml.jackson.databind.exc that return PropertyName Modifier and Type Method Description PropertyNameInvalidNullException. getPropertyName()Methods in com.fasterxml.jackson.databind.exc with parameters of type PropertyName Modifier and Type Method Description static InvalidNullExceptionInvalidNullException. from(DeserializationContext ctxt, PropertyName name, JavaType type)Constructors in com.fasterxml.jackson.databind.exc with parameters of type PropertyName Constructor Description InvalidNullException(DeserializationContext ctxt, String msg, PropertyName pname) -
Uses of PropertyName in com.fasterxml.jackson.databind.ext
Methods in com.fasterxml.jackson.databind.ext that return PropertyName Modifier and Type Method Description abstract PropertyNameJava7Support. findConstructorName(AnnotatedParameter p)PropertyNameJava7SupportImpl. findConstructorName(AnnotatedParameter p) -
Uses of PropertyName in com.fasterxml.jackson.databind.introspect
Fields in com.fasterxml.jackson.databind.introspect declared as PropertyName Modifier and Type Field Description protected PropertyNamePOJOPropertyBuilder. _internalNameOriginal internal name, derived from accessor, of this property.protected PropertyNamePOJOPropertyBuilder. _nameExternal name of logical property; may change with renaming (by new instance being constructed using a new name)protected PropertyNameObjectIdInfo. _propertyNamePropertyNamePOJOPropertyBuilder.Linked. nameFields in com.fasterxml.jackson.databind.introspect with type parameters of type PropertyName Modifier and Type Field Description protected List<PropertyName>ConcreteBeanPropertyBase. _aliasesMethods in com.fasterxml.jackson.databind.introspect that return PropertyName Modifier and Type Method Description protected PropertyNameJacksonAnnotationIntrospector. _findConstructorName(Annotated a)protected PropertyNameBasicBeanDescription. _findCreatorPropertyName(AnnotatedParameter param)Deprecated.since 2.8protected PropertyNameJacksonAnnotationIntrospector. _propertyName(String localName, String namespace)PropertyNameAnnotationIntrospectorPair. findNameForDeserialization(Annotated a)PropertyNameJacksonAnnotationIntrospector. findNameForDeserialization(Annotated a)PropertyNameAnnotationIntrospectorPair. findNameForSerialization(Annotated a)PropertyNameJacksonAnnotationIntrospector. findNameForSerialization(Annotated a)PropertyNameAnnotationIntrospectorPair. findRootName(AnnotatedClass ac)PropertyNameJacksonAnnotationIntrospector. findRootName(AnnotatedClass ac)PropertyNameAnnotationIntrospectorPair. findWrapperName(Annotated ann)abstract PropertyNameBeanPropertyDefinition. getFullName()PropertyNamePOJOPropertyBuilder. getFullName()PropertyNameObjectIdInfo. getPropertyName()abstract PropertyNameBeanPropertyDefinition. getWrapperName()Accessor for finding wrapper name to use for property (if any).PropertyNamePOJOPropertyBuilder. getWrapperName()Methods in com.fasterxml.jackson.databind.introspect that return types with arguments of type PropertyName Modifier and Type Method Description List<PropertyName>ConcreteBeanPropertyBase. findAliases(MapperConfig<?> config)Set<PropertyName>POJOPropertyBuilder. findExplicitNames()Method called to find out set of explicit names for accessors bound together due to implicit name.List<PropertyName>AnnotationIntrospectorPair. findPropertyAliases(Annotated ann)List<PropertyName>JacksonAnnotationIntrospector. findPropertyAliases(Annotated m)Methods in com.fasterxml.jackson.databind.introspect with parameters of type PropertyName Modifier and Type Method Description protected POJOPropertyBuilderPOJOPropertiesCollector. _property(Map<String,POJOPropertyBuilder> props, PropertyName name)voidPOJOPropertyBuilder. addCtor(AnnotatedParameter a, PropertyName name, boolean explName, boolean visible, boolean ignored)voidPOJOPropertyBuilder. addField(AnnotatedField a, PropertyName name, boolean explName, boolean visible, boolean ignored)voidPOJOPropertyBuilder. addGetter(AnnotatedMethod a, PropertyName name, boolean explName, boolean visible, boolean ignored)voidPOJOPropertyBuilder. addSetter(AnnotatedMethod a, PropertyName name, boolean explName, boolean visible, boolean ignored)BeanPropertyDefinitionBasicBeanDescription. findProperty(PropertyName name)booleanBeanPropertyDefinition. hasName(PropertyName name)booleanPOJOPropertyBuilder. hasName(PropertyName name)booleanBasicBeanDescription. hasProperty(PropertyName name)abstract BeanPropertyDefinitionBeanPropertyDefinition. withName(PropertyName newName)Method that can be used to create a definition with same settings as this one, but with different (external) name; that is, one for whichBeanPropertyDefinition.getName()would returnnewName.POJOPropertyBuilderPOJOPropertyBuilder. withName(PropertyName newName)Method parameters in com.fasterxml.jackson.databind.introspect with type arguments of type PropertyName Modifier and Type Method Description Collection<POJOPropertyBuilder>POJOPropertyBuilder. explode(Collection<PropertyName> newNames)Method called when a previous call toPOJOPropertyBuilder.findExplicitNames()found multiple distinct explicit names, and the property this builder represents basically needs to be broken apart and replaced by a set of more than one properties.Constructors in com.fasterxml.jackson.databind.introspect with parameters of type PropertyName Constructor Description Linked(T v, POJOPropertyBuilder.Linked<T> n, PropertyName name, boolean explName, boolean visible, boolean ignored)ObjectIdInfo(PropertyName prop, Class<?> scope, Class<? extends com.fasterxml.jackson.annotation.ObjectIdGenerator<?>> gen, boolean alwaysAsId)ObjectIdInfo(PropertyName prop, Class<?> scope, Class<? extends com.fasterxml.jackson.annotation.ObjectIdGenerator<?>> gen, boolean alwaysAsId, Class<? extends com.fasterxml.jackson.annotation.ObjectIdResolver> resolver)ObjectIdInfo(PropertyName name, Class<?> scope, Class<? extends com.fasterxml.jackson.annotation.ObjectIdGenerator<?>> gen, Class<? extends com.fasterxml.jackson.annotation.ObjectIdResolver> resolver)POJOPropertyBuilder(MapperConfig<?> config, AnnotationIntrospector ai, boolean forSerialization, PropertyName internalName)POJOPropertyBuilder(MapperConfig<?> config, AnnotationIntrospector ai, boolean forSerialization, PropertyName internalName, PropertyName name)POJOPropertyBuilder(POJOPropertyBuilder src, PropertyName newName) -
Uses of PropertyName in com.fasterxml.jackson.databind.ser
Fields in com.fasterxml.jackson.databind.ser declared as PropertyName Modifier and Type Field Description protected PropertyNameBeanPropertyWriter. _wrapperNameWrapper name to use for this element, if anyMethods in com.fasterxml.jackson.databind.ser that return PropertyName Modifier and Type Method Description PropertyNameBeanPropertyWriter. getFullName()abstract PropertyNamePropertyWriter. getFullName()PropertyNameBeanPropertyWriter. getWrapperName()Methods in com.fasterxml.jackson.databind.ser with parameters of type PropertyName Modifier and Type Method Description protected BeanPropertyWriterBeanPropertyWriter. _new(PropertyName newName)Overridable factory method used by sub-classesbooleanBeanPropertyWriter. wouldConflictWithName(PropertyName name)Method called to check to see if this property has a name that would conflict with a given name.Constructors in com.fasterxml.jackson.databind.ser with parameters of type PropertyName Constructor Description BeanPropertyWriter(BeanPropertyWriter base, PropertyName name)VirtualBeanPropertyWriter(VirtualBeanPropertyWriter base, PropertyName name) -
Uses of PropertyName in com.fasterxml.jackson.databind.ser.impl
Methods in com.fasterxml.jackson.databind.ser.impl with parameters of type PropertyName Modifier and Type Method Description static ObjectIdWriterObjectIdWriter. construct(JavaType idType, PropertyName propName, com.fasterxml.jackson.annotation.ObjectIdGenerator<?> generator, boolean alwaysAsId)Factory method called byBeanSerializerBasewith the initial information based on standard settings for the type for which serializer is being built. -
Uses of PropertyName in com.fasterxml.jackson.databind.ser.std
Fields in com.fasterxml.jackson.databind.ser.std declared as PropertyName Modifier and Type Field Description protected static PropertyNameBeanSerializerBase. NAME_FOR_OBJECT_REFMethods in com.fasterxml.jackson.databind.ser.std that return PropertyName Modifier and Type Method Description PropertyNameMapProperty. getFullName()PropertyNameMapProperty. getWrapperName() -
Uses of PropertyName in com.fasterxml.jackson.databind.util
Fields in com.fasterxml.jackson.databind.util declared as PropertyName Modifier and Type Field Description protected PropertyNameSimpleBeanPropertyDefinition. _fullNameFields in com.fasterxml.jackson.databind.util with type parameters of type PropertyName Modifier and Type Field Description protected LRUMap<ClassKey,PropertyName>RootNameLookup. _rootNamesFor efficient operation, let's try to minimize number of times we need to introspect root element name to use.Methods in com.fasterxml.jackson.databind.util that return PropertyName Modifier and Type Method Description PropertyNameRootNameLookup. findRootName(JavaType rootType, MapperConfig<?> config)PropertyNameRootNameLookup. findRootName(Class<?> rootType, MapperConfig<?> config)PropertyNameSimpleBeanPropertyDefinition. getFullName()PropertyNameSimpleBeanPropertyDefinition. getWrapperName()Methods in com.fasterxml.jackson.databind.util with parameters of type PropertyName Modifier and Type Method Description static SimpleBeanPropertyDefinitionSimpleBeanPropertyDefinition. construct(MapperConfig<?> config, AnnotatedMember member, PropertyName name)static SimpleBeanPropertyDefinitionSimpleBeanPropertyDefinition. construct(MapperConfig<?> config, AnnotatedMember member, PropertyName name, PropertyMetadata metadata, com.fasterxml.jackson.annotation.JsonInclude.Include inclusion)Method called to create instance for virtual properties.static SimpleBeanPropertyDefinitionSimpleBeanPropertyDefinition. construct(MapperConfig<?> config, AnnotatedMember member, PropertyName name, PropertyMetadata metadata, com.fasterxml.jackson.annotation.JsonInclude.Value inclusion)booleanSimpleBeanPropertyDefinition. hasName(PropertyName name)BeanPropertyDefinitionSimpleBeanPropertyDefinition. withName(PropertyName newName)Constructors in com.fasterxml.jackson.databind.util with parameters of type PropertyName Constructor Description SimpleBeanPropertyDefinition(AnnotationIntrospector intr, AnnotatedMember member, PropertyName fullName, PropertyMetadata metadata, com.fasterxml.jackson.annotation.JsonInclude.Value inclusion)
-