Package com.fasterxml.jackson.databind
Class BeanProperty.Std
java.lang.Object
com.fasterxml.jackson.databind.BeanProperty.Std
- All Implemented Interfaces:
BeanProperty
,Named
,Serializable
- Direct Known Subclasses:
ValueInjector
- Enclosing interface:
BeanProperty
Simple stand-alone implementation, useful as a placeholder
or base class for more complex implementations.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.fasterxml.jackson.databind.BeanProperty
BeanProperty.Bogus, BeanProperty.Std
-
Field Summary
Fields inherited from interface com.fasterxml.jackson.databind.BeanProperty
EMPTY_FORMAT, EMPTY_INCLUDE
-
Constructor Summary
ConstructorsConstructorDescriptionStd
(BeanProperty.Std base, JavaType newType) 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 -
Method Summary
Modifier and TypeMethodDescriptionvoid
depositSchemaProperty
(JsonObjectFormatVisitor objectVisitor, SerializerProvider provider) Implementation of this method throwsUnsupportedOperationException
, since instances of this implementation should not be used as part of actual structure visited.findAliases
(MapperConfig<?> config) Method for accessing set of possible alternate names that are accepted during deserialization.Deprecated.findPropertyFormat
(MapperConfig<?> config, Class<?> baseType) Helper method used to look up format settings applicable to this property, considering both possible per-type configuration settingsfindPropertyInclusion
(MapperConfig<?> config, Class<?> baseType) Convenience method that is roughly equivalent to<A extends Annotation>
AgetAnnotation
(Class<A> acls) Method for finding annotation associated with this property; meaning annotation associated with one of entities used to access property.<A extends Annotation>
AgetContextAnnotation
(Class<A> acls) Method for finding annotation associated with context of this property; usually class in which member is declared (or its subtype if processing subtype).Method for getting full name definition, including possible format-specific additional properties (such as namespace when using XML backend).Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.Accessor for additional optional information about property.getName()
Method to get logical name of the propertygetType()
Method to get declared type of the property.If property is indicated to be wrapped, name of wrapper element to use.boolean
Whether value for property is marked as required using annotations or associated schema.boolean
Accessor for checking whether there is an actual physical property behind this property abstraction or not.
-
Constructor Details
-
Std
public Std(PropertyName name, JavaType type, PropertyName wrapperName, AnnotatedMember member, PropertyMetadata metadata) -
Std
@Deprecated public Std(PropertyName name, JavaType type, PropertyName wrapperName, Annotations contextAnnotations, AnnotatedMember member, PropertyMetadata metadata) Deprecated.Since 2.9 -
Std
- Since:
- 2.6
-
-
Method Details
-
withType
-
getAnnotation
Description copied from interface:BeanProperty
Method for finding annotation associated with this property; meaning annotation associated with one of entities used to access property.Note that this method should only be called for custom annotations; access to standard Jackson annotations (or ones supported by alternate
AnnotationIntrospector
s) should be accessed throughAnnotationIntrospector
.- Specified by:
getAnnotation
in interfaceBeanProperty
-
getContextAnnotation
Description copied from interface:BeanProperty
Method for finding annotation associated with context of this property; usually class in which member is declared (or its subtype if processing subtype).Note that this method should only be called for custom annotations; access to standard Jackson annotations (or ones supported by alternate
AnnotationIntrospector
s) should be accessed throughAnnotationIntrospector
.- Specified by:
getContextAnnotation
in interfaceBeanProperty
-
findFormatOverrides
Deprecated.Description copied from interface:BeanProperty
Convenience method that is roughly equivalent toreturn intr.findFormat(getMember());
and specifically does NOT try to find per-type format defaults to merge; useBeanProperty.findPropertyFormat(com.fasterxml.jackson.databind.cfg.MapperConfig<?>, java.lang.Class<?>)
if such defaults would be useful.- Specified by:
findFormatOverrides
in interfaceBeanProperty
-
findPropertyFormat
Description copied from interface:BeanProperty
Helper method used to look up format settings applicable to this property, considering both possible per-type configuration settings- Specified by:
findPropertyFormat
in interfaceBeanProperty
-
findPropertyInclusion
Description copied from interface:BeanProperty
Convenience method that is roughly equivalent toreturn config.getAnnotationIntrospector().findPropertyInclusion(getMember());
but also considers global default settings for inclusion- Specified by:
findPropertyInclusion
in interfaceBeanProperty
-
findAliases
Description copied from interface:BeanProperty
Method for accessing set of possible alternate names that are accepted during deserialization.- Specified by:
findAliases
in interfaceBeanProperty
- Returns:
- List (possibly empty) of alternate names; never null
-
getName
Description copied from interface:BeanProperty
Method to get logical name of the property- Specified by:
getName
in interfaceBeanProperty
- Specified by:
getName
in interfaceNamed
-
getFullName
Description copied from interface:BeanProperty
Method for getting full name definition, including possible format-specific additional properties (such as namespace when using XML backend).- Specified by:
getFullName
in interfaceBeanProperty
-
getType
Description copied from interface:BeanProperty
Method to get declared type of the property.- Specified by:
getType
in interfaceBeanProperty
-
getWrapperName
Description copied from interface:BeanProperty
If property is indicated to be wrapped, name of wrapper element to use.- Specified by:
getWrapperName
in interfaceBeanProperty
-
isRequired
public boolean isRequired()Description copied from interface:BeanProperty
Whether value for property is marked as required using annotations or associated schema. Equivalent to:getMetadata().isRequired()
- Specified by:
isRequired
in interfaceBeanProperty
-
getMetadata
Description copied from interface:BeanProperty
Accessor for additional optional information about property.- Specified by:
getMetadata
in interfaceBeanProperty
- Returns:
- Metadata about property; never null.
-
getMember
Description copied from interface:BeanProperty
Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.- Specified by:
getMember
in interfaceBeanProperty
-
isVirtual
public boolean isVirtual()Description copied from interface:BeanProperty
Accessor for checking whether there is an actual physical property behind this property abstraction or not.- Specified by:
isVirtual
in interfaceBeanProperty
-
depositSchemaProperty
public void depositSchemaProperty(JsonObjectFormatVisitor objectVisitor, SerializerProvider provider) Implementation of this method throwsUnsupportedOperationException
, since instances of this implementation should not be used as part of actual structure visited. Rather, other implementations should handle it.- Specified by:
depositSchemaProperty
in interfaceBeanProperty
- Parameters:
objectVisitor
- Visitor to used as the callback handler
-