Class PropertyNamingStrategy
- java.lang.Object
-
- com.fasterxml.jackson.databind.PropertyNamingStrategy
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
PropertyNamingStrategies.NamingBase
,PropertyNamingStrategy.PropertyNamingStrategyBase
public class PropertyNamingStrategy extends java.lang.Object implements java.io.Serializable
Class that defines how names of JSON properties ("external names") are derived from names of POJO methods and fields ("internal names"), in cases where no explicit annotations exist for naming. Methods are passed information about POJO member for which name is needed, as well as default name that would be used if no custom strategy was used.Default (empty) implementation returns suggested ("implicit" or "default") name unmodified
Note that the strategy is guaranteed to be called once per logical property (which may be represented by multiple members; such as pair of a getter and a setter), but may be called for each: implementations should not count on exact number of times, and should work for any member that represent a property. Also note that calls are made during construction of serializers and deserializers which are typically cached, and not for every time serializer or deserializer is called.
In absence of a registered custom strategy, the default Java property naming strategy is used, which leaves field names as is, and removes set/get/is prefix from methods (as well as lower-cases initial sequence of capitalized characters).
NOTE! Since 2.12 sub-classes defined here (as well as static singleton instances thereof) are deprecated due to databind#2715. Please use constants and classes in
PropertyNamingStrategies
instead.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Field Summary
Fields Modifier and Type Field Description static PropertyNamingStrategy
CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES
Deprecated.Since 2.7 usePropertyNamingStrategies.SNAKE_CASE
instead.static PropertyNamingStrategy
KEBAB_CASE
Deprecated.Since 2.12 deprecated.static PropertyNamingStrategy
LOWER_CAMEL_CASE
Deprecated.Since 2.12 deprecated.static PropertyNamingStrategy
LOWER_CASE
Deprecated.Since 2.12 deprecated.static PropertyNamingStrategy
LOWER_DOT_CASE
Deprecated.Since 2.12 deprecated.static PropertyNamingStrategy
PASCAL_CASE_TO_CAMEL_CASE
Deprecated.Since 2.7 usePropertyNamingStrategies.UPPER_CAMEL_CASE
instead;static PropertyNamingStrategy
SNAKE_CASE
Deprecated.Since 2.12 deprecated.static PropertyNamingStrategy
UPPER_CAMEL_CASE
Deprecated.Since 2.12 deprecated.
-
Constructor Summary
Constructors Constructor Description PropertyNamingStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
nameForConstructorParameter(MapperConfig<?> config, AnnotatedParameter ctorParam, java.lang.String defaultName)
Method called to find external name (name used in JSON) for given logical POJO property, as defined by given constructor parameter; typically called when building a deserializer (but not necessarily only then).java.lang.String
nameForField(MapperConfig<?> config, AnnotatedField field, java.lang.String defaultName)
Method called to find external name (name used in JSON) for given logical POJO property, as defined by given field.java.lang.String
nameForGetterMethod(MapperConfig<?> config, AnnotatedMethod method, java.lang.String defaultName)
Method called to find external name (name used in JSON) for given logical POJO property, as defined by given getter method; typically called when building a serializer.java.lang.String
nameForSetterMethod(MapperConfig<?> config, AnnotatedMethod method, java.lang.String defaultName)
Method called to find external name (name used in JSON) for given logical POJO property, as defined by given setter method; typically called when building a deserializer (but not necessarily only then).
-
-
-
Field Detail
-
LOWER_CAMEL_CASE
@Deprecated public static final PropertyNamingStrategy LOWER_CAMEL_CASE
Deprecated.Since 2.12 deprecated. UsePropertyNamingStrategies.LOWER_CAMEL_CASE
instead. See databind#2715 for reasons for deprecation.
-
UPPER_CAMEL_CASE
@Deprecated public static final PropertyNamingStrategy UPPER_CAMEL_CASE
Deprecated.Since 2.12 deprecated. UsePropertyNamingStrategies.UPPER_CAMEL_CASE
instead. See databind#2715 for reasons for deprecation.
-
SNAKE_CASE
@Deprecated public static final PropertyNamingStrategy SNAKE_CASE
Deprecated.Since 2.12 deprecated. UsePropertyNamingStrategies.SNAKE_CASE
instead. See databind#2715 for reasons for deprecation.
-
LOWER_CASE
@Deprecated public static final PropertyNamingStrategy LOWER_CASE
Deprecated.Since 2.12 deprecated. UsePropertyNamingStrategies.LOWER_CASE
instead. See databind#2715 for reasons for deprecation.
-
KEBAB_CASE
@Deprecated public static final PropertyNamingStrategy KEBAB_CASE
Deprecated.Since 2.12 deprecated. UsePropertyNamingStrategies.KEBAB_CASE
instead. See databind#2715 for reasons for deprecation.
-
LOWER_DOT_CASE
@Deprecated public static final PropertyNamingStrategy LOWER_DOT_CASE
Deprecated.Since 2.12 deprecated. UsePropertyNamingStrategies.LOWER_DOT_CASE
instead. See databind#2715 for reasons for deprecation.
-
CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES
@Deprecated public static final PropertyNamingStrategy CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES
Deprecated.Since 2.7 usePropertyNamingStrategies.SNAKE_CASE
instead.
-
PASCAL_CASE_TO_CAMEL_CASE
@Deprecated public static final PropertyNamingStrategy PASCAL_CASE_TO_CAMEL_CASE
Deprecated.Since 2.7 usePropertyNamingStrategies.UPPER_CAMEL_CASE
instead;
-
-
Method Detail
-
nameForField
public java.lang.String nameForField(MapperConfig<?> config, AnnotatedField field, java.lang.String defaultName)
Method called to find external name (name used in JSON) for given logical POJO property, as defined by given field.- Parameters:
config
- Configuration in used: eitherSerializationConfig
orDeserializationConfig
, depending on whether method is called during serialization or deserializationfield
- Field used to access propertydefaultName
- Default name that would be used for property in absence of custom strategy- Returns:
- Logical name to use for property that the field represents
-
nameForGetterMethod
public java.lang.String nameForGetterMethod(MapperConfig<?> config, AnnotatedMethod method, java.lang.String defaultName)
Method called to find external name (name used in JSON) for given logical POJO property, as defined by given getter method; typically called when building a serializer. (but not always -- when using "getter-as-setter", may be called during deserialization)- Parameters:
config
- Configuration in used: eitherSerializationConfig
orDeserializationConfig
, depending on whether method is called during serialization or deserializationmethod
- Method used to access property.defaultName
- Default name that would be used for property in absence of custom strategy- Returns:
- Logical name to use for property that the method represents
-
nameForSetterMethod
public java.lang.String nameForSetterMethod(MapperConfig<?> config, AnnotatedMethod method, java.lang.String defaultName)
Method called to find external name (name used in JSON) for given logical POJO property, as defined by given setter method; typically called when building a deserializer (but not necessarily only then).- Parameters:
config
- Configuration in used: eitherSerializationConfig
orDeserializationConfig
, depending on whether method is called during serialization or deserializationmethod
- Method used to access property.defaultName
- Default name that would be used for property in absence of custom strategy- Returns:
- Logical name to use for property that the method represents
-
nameForConstructorParameter
public java.lang.String nameForConstructorParameter(MapperConfig<?> config, AnnotatedParameter ctorParam, java.lang.String defaultName)
Method called to find external name (name used in JSON) for given logical POJO property, as defined by given constructor parameter; typically called when building a deserializer (but not necessarily only then).- Parameters:
config
- Configuration in used: eitherSerializationConfig
orDeserializationConfig
, depending on whether method is called during serialization or deserializationctorParam
- Constructor parameter used to pass property.defaultName
- Default name that would be used for property in absence of custom strategy
-
-