Recipe Name:
Rewrite appendSecondOfMinute to appendValue
Description:
Rewrite appendSecondOfMinute to appendValue
Level:
warning
Language:
- java
Tags:
- java.time
- framework specific
- 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-appendsecondsofminute version: 10 metadata: name: Rewrite appendSecondOfMinute to appendValue shortDescription: Rewrite appendSecondOfMinute 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: java.time;framework specific;Joda-Time;quality search: methodcall: argCount: 1 name: appendSecondOfMinute type: java.time.format.DateTimeFormatterBuilder availableFixes: - name: Rewrite using appendValue(TemporalField field, int width) actions: - rewrite: to: '{{{ qualifier }}}.appendValue(java.time.temporal.ChronoField.SECOND_OF_MINUTE, {{{ arguments }}})' - modifyAssignedVariable: type: java.time.format.DateTimeFormatterBuilder