Recipe Name:
Rewrite appendFixedDecimal to appendValue
Description:
Rewrite appendFixedDecimal to appendValue
Level:
warning
Language:
- java
Tags:
- framework specific
- java.time
- Joda-Time
- quality
Documentation
Migrate from org.joda.time.format.DateTimeFormatterBuilder to Java Time
Joda-Time DateTimeFormatterBuilder migrates to java.time DateTimeFormatterBuilder.
It's the same concept, a builder of the formatter.
Although, most of the methods have a different signature and some even have no equivalent in java.time
Those methods have no equivalent:
- canBuildFormatter
- canBuildPrinter
- canBuildParser
Find some examples below:
BeforeDateTimeFormatterBuilder dtfb = new DateTimeFormatterBuilder(); DateTimeFormatterBuilder appendSecondOfDay = dtfb.appendSecondOfDay(intArg);After
java.time.format.DateTimeFormatterBuilder dtfb = new java.time.format.DateTimeFormatterBuilder(); java.time.format.DateTimeFormatterBuilder appendSecondOfDay = dtfb.appendValue(ChronoField.SECOND_OF_DAY, intArg);References
Recipe
id: scw:java.time:Joda-Time:datetimeformatterbuilder-append version: 10 metadata: name: Rewrite appendFixedDecimal to appendValue shortDescription: Rewrite appendFixedDecimal to appendValue level: warning language: java enabled: true comment: | Searches for a append* method called and provides fixes to migrate to a java.time equivalent. This recipe is designed to match on broken code. This method originally was called by joda DateTimeFormatterBuilder type, however this object type should first be migrated to java.time.format.DateTimeFormatterBuilder using the other migration recipes. This recipe will then match on the broken code, and the fixes in this recipe will allow the completion of the migration. descriptionFile: descriptions/datetimeformatterbuilder.html tags: framework specific;java.time;Joda-Time;quality search: methodcall: name: appendFixedDecimal type: java.time.format.DateTimeFormatterBuilder availableFixes: - name: Rewrite to appendValue(field, width) actions: - rewrite: to: '{{{ qualifier }}}.appendValue({{{ arguments }}})' - modifyAssignedVariable: type: java.time.format.DateTimeFormatterBuilder