Skip to content

Commit

Permalink
Merge branch '2.19'
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 13, 2025
2 parents 8e4017e + dd929e2 commit 8b9f7d3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/main/java/tools/jackson/databind/module/SimpleModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
* NOTE: that [de]serializers are registered as "default" [de]serializers.
* As a result, they will have lower priority than the ones indicated through annotations on
* both Class and property-associated annotations -- for example,
* {@link tools.jackson.databind.annotation.JsonDeserialize}.<br/>
* {@link tools.jackson.databind.annotation.JsonDeserialize}.<br>
* In cases where both module-based [de]serializers and annotation-based [de]serializers are registered,
* the [de]serializer specified by the annotation will take precedence.
*<p>
* NOTE: although it is not expected that sub-types should need to
* override {@link #setupModule(SetupContext)} method, if they choose
* to do so they MUST call {@code super.setupModule(context);}
* to do so they MUST call {@code super.setupModule(context)}
* to ensure that registration works as expected.
*<p>
* WARNING: when registering {@link ValueSerializer}s and {@link ValueDeserializer}s,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
public enum NamingStrategyImpls {
/**
* beanName -> beanName
* beanName {@code ->} beanName
*/
LOWER_CAMEL_CASE {
@Override
Expand All @@ -17,7 +17,7 @@ public String translate(String beanName) {
},

/**
* beanName -> BeanName
* beanName {@code ->} BeanName
*/
UPPER_CAMEL_CASE {
@Override
Expand All @@ -38,7 +38,7 @@ public String translate(String beanName) {
},

/**
* beanName -> bean_name
* beanName {@code ->} bean_name
*/
SNAKE_CASE {
@Override
Expand Down Expand Up @@ -71,7 +71,7 @@ public String translate(String beanName) {
},

/**
* beanName -> BEAN_NAME
* beanName {@code ->} BEAN_NAME
*/
UPPER_SNAKE_CASE {
@Override
Expand All @@ -85,7 +85,7 @@ public String translate(String beanName) {
},

/**
* beanName -> beanname
* beanName {@code ->} beanname
*/
LOWER_CASE {
@Override
Expand All @@ -98,7 +98,7 @@ public String translate(String beanName) {
},

/**
* beanName -> bean-name
* beanName {@code ->} bean-name
*/
KEBAB_CASE {
@Override
Expand All @@ -108,7 +108,7 @@ public String translate(String beanName) {
},

/**
* beanName -> bean.name
* beanName {@code ->} bean.name
*/
LOWER_DOT_CASE {
@Override
Expand Down

0 comments on commit 8b9f7d3

Please sign in to comment.