public class SimpleBeanPropertyDefinition extends BeanPropertyDefinition
BeanPropertyDefinition
implementation that can
be wrapped around a AnnotatedMember
that is a simple
accessor (getter) or mutator (setter, constructor parameter)
(or both, for fields).Modifier and Type | Field and Description |
---|---|
protected AnnotationIntrospector |
_introspector |
protected AnnotatedMember |
_member
Member that defines logical property.
|
protected String |
_name |
Constructor and Description |
---|
SimpleBeanPropertyDefinition(AnnotatedMember member)
Deprecated.
|
SimpleBeanPropertyDefinition(AnnotatedMember member,
String name)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static SimpleBeanPropertyDefinition |
construct(MapperConfig<?> config,
AnnotatedMember member) |
static SimpleBeanPropertyDefinition |
construct(MapperConfig<?> config,
AnnotatedMember member,
String name) |
AnnotatedMember |
getAccessor()
Method used to find accessor (getter, field to access) to use for accessing
value of the property.
|
AnnotatedParameter |
getConstructorParameter() |
AnnotatedField |
getField() |
PropertyName |
getFullName() |
AnnotatedMethod |
getGetter() |
String |
getInternalName()
Accessor that can be used to determine implicit name from underlying
element(s) before possible renaming.
|
PropertyMetadata |
getMetadata()
We will indicate that property is optional, since there is nothing
to indicate whether it might be required.
|
AnnotatedMember |
getMutator()
Method used to find mutator (constructor parameter, setter, field) to use for
changing value of the property.
|
String |
getName()
Accessor for name used for external representation (in JSON).
|
AnnotatedMember |
getNonConstructorMutator() |
AnnotatedMember |
getPrimaryMember()
Method used to find the property member (getter, setter, field) that has
the highest precedence in current context (getter method when serializing,
if available, and so forth), if any.
|
AnnotatedMethod |
getSetter() |
PropertyName |
getWrapperName()
Accessor for finding wrapper name to use for property (if any).
|
boolean |
hasConstructorParameter() |
boolean |
hasField() |
boolean |
hasGetter() |
boolean |
hasSetter() |
boolean |
isExplicitlyIncluded()
Accessor that can be called to check whether property was included
due to an explicit marker (usually annotation), or just by naming
convention.
|
SimpleBeanPropertyDefinition |
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 which
BeanPropertyDefinition.getName() would return newName . |
SimpleBeanPropertyDefinition |
withName(String newName)
Deprecated.
|
SimpleBeanPropertyDefinition |
withSimpleName(String newName)
Alternate "mutant factory" that will only change simple name, but
leave other optional parts (like namespace) as is.
|
couldDeserialize, couldSerialize, findObjectIdInfo, findReferenceType, findViews, isRequired, isTypeId
protected final AnnotationIntrospector _introspector
protected final AnnotatedMember _member
protected final String _name
@Deprecated public SimpleBeanPropertyDefinition(AnnotatedMember member)
@Deprecated public SimpleBeanPropertyDefinition(AnnotatedMember member, String name)
public static SimpleBeanPropertyDefinition construct(MapperConfig<?> config, AnnotatedMember member)
public static SimpleBeanPropertyDefinition construct(MapperConfig<?> config, AnnotatedMember member, String name)
@Deprecated public SimpleBeanPropertyDefinition withName(String newName)
withName
in class BeanPropertyDefinition
public SimpleBeanPropertyDefinition withSimpleName(String newName)
BeanPropertyDefinition
withSimpleName
in class BeanPropertyDefinition
public SimpleBeanPropertyDefinition withName(PropertyName newName)
BeanPropertyDefinition
BeanPropertyDefinition.getName()
would return newName
.withName
in class BeanPropertyDefinition
public String getName()
BeanPropertyDefinition
getName
in interface Named
getName
in class BeanPropertyDefinition
public PropertyName getFullName()
getFullName
in class BeanPropertyDefinition
public String getInternalName()
BeanPropertyDefinition
getInternalName
in class BeanPropertyDefinition
public PropertyName getWrapperName()
BeanPropertyDefinition
getWrapperName
in class BeanPropertyDefinition
public boolean isExplicitlyIncluded()
BeanPropertyDefinition
isExplicitlyIncluded
in class BeanPropertyDefinition
public PropertyMetadata getMetadata()
getMetadata
in class BeanPropertyDefinition
public boolean hasGetter()
hasGetter
in class BeanPropertyDefinition
public boolean hasSetter()
hasSetter
in class BeanPropertyDefinition
public boolean hasField()
hasField
in class BeanPropertyDefinition
public boolean hasConstructorParameter()
hasConstructorParameter
in class BeanPropertyDefinition
public AnnotatedMethod getGetter()
getGetter
in class BeanPropertyDefinition
public AnnotatedMethod getSetter()
getSetter
in class BeanPropertyDefinition
public AnnotatedField getField()
getField
in class BeanPropertyDefinition
public AnnotatedParameter getConstructorParameter()
getConstructorParameter
in class BeanPropertyDefinition
public AnnotatedMember getAccessor()
getAccessor
in class BeanPropertyDefinition
public AnnotatedMember getMutator()
getMutator
in class BeanPropertyDefinition
public AnnotatedMember getNonConstructorMutator()
getNonConstructorMutator
in class BeanPropertyDefinition
public AnnotatedMember getPrimaryMember()
BeanPropertyDefinition
getPrimaryMember
in class BeanPropertyDefinition
Copyright © 2012-2013 FasterXML. All Rights Reserved.