Recipe Name:
Century of Era is not supported in java.time
Description:
Century of Era is not supported in java.time
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:Java-Time:datetimeformatterbuilder-appendCenturyOfEra version: 10 metadata: name: Century of Era is not supported in java.time shortDescription: Century of Era is not supported in java.time level: warning language: java enabled: true comment: | Searches for appendCenturyOfEra method call. CenturyOfEra is not supported in java.time. Please consider to change it. descriptionFile: descriptions/datetimeformatterbuilder.html tags: java.time;framework specific;Joda-Time;quality search: methodcall: name: appendCenturyOfEra type: java.time.format.DateTimeFormatterBuilder availableFixes: - name: Open javadoc for java.time.format.DateTimeFormatterBuilder actions: - goto: type: URL value: https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatterBuilder.html