Cookbook Name:
Standardisation on java.time (JSR-310)
Description:
Standardisation on java.time (JSR-310) including migrations from other time frameworks.
Owner:
Secure Code Warrior
Number of Recipes:
189
Recipe Name Description Language Level Tags
Date-Calendar/Calendar
Migrate SimpleDateFormat to java.time DateTimeFormatter Migrate SimpleDateFormat to java.time DateTimeFormatter java warning java.timejava.util.Calendarquality
Migrate method parameters type to java.time Migrate method parameters type to java.time java warning java.timejava.util.Calendarquality
Migrate return type to java.time Migrate return type to java.time javakotlin warning java.timejava.util.Calendarquality
Date-Calendar/Calendar/Constructors
Migrate GregorianCalendar (year, month, day) to java.time Migrate GregorianCalendar (year, month, day) to java.time java warning java.timejava.util.Calendarquality
Migrate GregorianCalendar (year, month, day, hour, minute) to java.time Migrate GregorianCalendar (year, month, day, hour, minute) to java.time java warning java.timejava.util.Calendarquality
Migrate GregorianCalendar (year, month, day, hour, minute, second) to java.time Migrate GregorianCalendar (year, month, day, hour, minute, second) to java.time java warning java.timejava.util.Calendarquality
Migrate new GregorianCalendar (Timezone, Locale) to java.time Migrate new GregorianCalendar (Timezone, Locale) to java.time java warning java.timejava.util.Calendarquality
Migrate new GregorianCalendar to java.time Migrate new GregorianCalendar to java.time java warning java.timejava.util.Calendarquality
Migrate new GregorianCalendar(Locale) to java.time Migrate new GregorianCalendar(Locale) to java.time java warning java.timejava.util.Calendarquality
Migrate new GregorianCalendar(Timezone) to java.time Migrate new GregorianCalendar(Timezone) to java.time java warning java.timejava.util.Calendarquality
Migrate newInstance Calendar to java.time Migrate newInstance Calendar to java.time java warning java.timejava.util.Calendarquality
Migrate newInstance Calendar to java.time with ZoneId Migrate newInstance Calendar to java.time with ZoneId java warning java.timejava.util.Calendarquality
Date-Calendar/Calendar/Get
Convert LocalDate getTime to java.time Equivalent Convert LocalDate getTime to java.time Equivalent java warning java.timejava.util.Calendarquality
Convert LocalDateTime getTime to java.time Equivalent Convert LocalDateTime getTime to java.time Equivalent java warning java.timejava.util.Calendarquality
Convert LocalDateTime getTimeInMillis to Instant toEpochMilli Convert LocalDateTime getTimeInMillis to Instant toEpochMilli java warning java.timejava.util.Calendarquality
Convert getTime to java.time Equivalent Convert getTime to java.time Equivalent java warning java.timejava.util.Calendarquality
Convert getTimeInMillis to Instant toEpochMilli Convert getTimeInMillis to Instant toEpochMilli java warning java.timejava.util.Calendarquality
Migrate Calendar get Day of Month Migrate Calendar get Day of Month java warning java.timejava.util.Calendarquality
Migrate Calendar get Day of Week Migrate Calendar get Day of Week java warning java.timejava.util.Calendarquality
Migrate Calendar get Day of Year Migrate Calendar get Day of Year java warning java.timejava.util.Calendarquality
Migrate Calendar get Hour Migrate Calendar get Hour java warning java.timejava.util.Calendarquality
Migrate Calendar get Hour of Day Migrate Calendar get Hour of Day java warning java.timejava.util.Calendarquality
Migrate Calendar get Minute Migrate Calendar get Minute java warning java.timejava.util.Calendarquality
Migrate Calendar get Month Migrate Calendar get Month java warning java.timejava.util.Calendarquality
Migrate Calendar get Second Migrate Calendar get Second java warning java.timejava.util.Calendarquality
Migrate Calendar get Year Migrate Calendar get Year java warning java.timejava.util.Calendarquality
Date-Calendar/Calendar/Plus
Migrate add method to java.time plus method - Days Migrate add method to java.time plus method - Days java warning java.timejava.util.Calendarquality
Migrate add method to java.time plus method - Hours Migrate add method to java.time plus method - Hours java warning java.timejava.util.Calendarquality
Migrate add method to java.time plus method - Millis Migrate add method to java.time plus method - Millis java warning java.timejava.util.Calendarquality
Migrate add method to java.time plus method - Minutes Migrate add method to java.time plus method - Minutes java warning java.timejava.util.Calendarquality
Migrate add method to java.time plus method - Months Migrate add method to java.time plus method - Months java warning java.timejava.util.Calendarquality
Migrate add method to java.time plus method - Seconds Migrate add method to java.time plus method - Seconds java warning java.timejava.util.Calendarquality
Migrate add method to java.time plus method - Weeks Migrate add method to java.time plus method - Weeks java warning java.timejava.util.Calendarquality
Migrate add method to java.time plus method - Years Migrate add method to java.time plus method - Years java warning java.timejava.util.Calendarquality
Date-Calendar/Calendar/Set
Migrate Calendar set() to java.time with() - Days Migrate Calendar set() to java.time with() - Days java warning java.timejava.util.Calendarquality
Migrate Calendar set() to java.time with() - Hours Migrate Calendar set() to java.time with() - Hours java warning java.timejava.util.Calendarquality
Migrate Calendar set() to java.time with() - Hours of day Migrate Calendar set() to java.time with() - Hours of day java warning java.timejava.util.Calendarquality
Migrate Calendar set() to java.time with() - Millisecond Migrate Calendar set() to java.time with() - Millisecond java warning java.timejava.util.Calendarquality
Migrate Calendar set() to java.time with() - Minutes Migrate Calendar set() to java.time with() - Minutes java warning java.timejava.util.Calendarquality
Migrate Calendar set() to java.time with() - Months Migrate Calendar set() to java.time with() - Months java warning java.timejava.util.Calendarquality
Migrate Calendar set() to java.time with() - Seconds Migrate Calendar set() to java.time with() - Seconds java warning java.timejava.util.Calendarquality
Migrate Calendar set() to java.time with() - Years Migrate Calendar set() to java.time with() - Years java warning java.timejava.util.Calendarquality
Migrate Calendar setTimeInMillis() to java.time Migrate Calendar setTimeInMillis() to java.time java warning java.timejava.util.Calendarquality
Date-Calendar/Date
Migrate Date after to isAfter Migrate Date after to isAfter java warning java.timejava.util.Datequality
Migrate Date before to isBefore Migrate Date before to isBefore java warning java.timejava.util.Datequality
Migrate Date field to java.time Migrate Date field to java.time java warning java.timejava.util.Datequality
Migrate Date methods parameters to java.time Migrate Date methods parameters to java.time java warning java.timejava.util.Datequality
Migrate return type to java.time Migrate return type to java.time javakotlin warning java.timejava.util.Datequality
Replace new Date() with java.time Replace new Date() with java.time java warning java.timejava.util.Datequality
Replace new Date(Long) with java.time Replace new Date(Long) with java.time java warning java.timejava.util.Datequality
Date-Calendar/TimeZone
TimeZone to ZoneId TimeZone to ZoneId java warning java.timequality
TimeZone to ZoneId default TimeZone to ZoneId default java warning java.timejava.util.Datequality
JodaTimeToJavaTime/Common/get
Rewrite getCenturyOfEra to java.time equivalent Rewrite getCenturyOfEra to java.time equivalent java warning java.timeframework specificJoda-Timequality
Rewrite getDateTimeField method to get(ChronoField.DATE_TIME_FIELD) Rewrite getDateTimeField method to get(ChronoField.DATE_TIME_FIELD) java warning java.timeframework specificJoda-Timequality
Rewrite getHourOfDay() to getHour() Rewrite getHourOfDay() to getHour() java warning framework specificjava.timeJoda-Timequality
Rewrite getMinuteOfHour() to getMinute() Rewrite getMinuteOfHour() to getMinute() java warning framework specificjava.timeJoda-Timequality
Rewrite getSecondOfMinute() to getSecond() Rewrite getSecondOfMinute() to getSecond() java warning framework specificjava.timeJoda-Timequality
Rewrite getWeekOfWeekyear() to java.time equivalent Rewrite getWeekOfWeekyear() to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite getWeekyear() to java.time equivalent Rewrite getWeekyear() to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite getYearOfCentury() to java.time equivalent Rewrite getYearOfCentury() to java.time equivalent java warning java.timeframework specificJoda-Timequality
JodaTimeToJavaTime/DateTime
Constructor argument (Object) needs to be migrated to java.time before Constructor Migration can occur Constructor argument (Object) needs to be migrated to java.time before Constructor Migration can occur java info framework specificjava.timeJoda-Timequality
Constructor argument (Object) needs to be migrated to java.time before Constructor Migration can occur Constructor argument (Object) needs to be migrated to java.time before Constructor Migration can occur java info framework specificjava.timeJoda-Timequality
Constructor argument (ReadableInstant) needs to be migrated to java.time before Constructor Migration can occur Constructor argument (ReadableInstant) needs to be migrated to java.time before Constructor Migration can occur java info framework specificjava.timeJoda-Timequality
DateTime toString() format has changed from Joda-Time to java.time DateTime toString() format has changed from Joda-Time to java.time java warning java.timeframework specificJoda-Timequality
Migrate DateTime parameter to java.time.ZonedDateTime or java.time.OffsetDateTime Migrate DateTime parameter to java.time.ZonedDateTime or java.time.OffsetDateTime java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime() to java.time Migrate new DateTime() to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(Calendar) to java.time Migrate new DateTime(Calendar) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(Calendar, DateTimeZone) to java.time Migrate new DateTime(Calendar, DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(Date) to java.time Migrate new DateTime(Date) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(Date, DateTimeZone) to java.time Migrate new DateTime(Date, DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(DateTimeZone) to java.time Migrate new DateTime(DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(java.time.Instant) to java.time Migrate new DateTime(java.time.Instant) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(java.time.Instant, DateTimeZone) to java.time Migrate new DateTime(java.time.Instant, DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(java.time.TemporalAccessor) to java.time Migrate new DateTime(java.time.TemporalAccessor) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(java.time.TemporalAccessor, DateTimeZone) to java.time Migrate new DateTime(java.time.TemporalAccessor, DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(long) to java.time Migrate new DateTime(long) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(long, DateTimeZone) to java.time Migrate new DateTime(long, DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(year, month, day, hour, minute) to java.time Migrate new DateTime(year, month, day, hour, minute) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(year, month, day, hour, minute, DateTimeZone) to java.time Migrate new DateTime(year, month, day, hour, minute, DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(year, month, day, hour, minute, second) to java.time Migrate new DateTime(year, month, day, hour, minute, second) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(year, month, day, hour, minute, second, DateTimeZone) to java.time Migrate new DateTime(year, month, day, hour, minute, second, DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(year, month, day, hour, minute, second, millis) to java.time Migrate new DateTime(year, month, day, hour, minute, second, millis) to java.time java warning framework specificjava.timeJoda-Timequality
Migrate new DateTime(year, month, day, hour, minute, second, millis, DateTimeZone) to java.time Migrate new DateTime(year, month, day, hour, minute, second, millis, DateTimeZone) to java.time java warning framework specificjava.timeJoda-Timequality
Remove obsolete toDateTime method call Remove obsolete toDateTime method call java warning java.timeframework specificJoda-Timequality
Rewrite DateTime withZone to java.time equivalent Rewrite DateTime withZone to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite DateTime withZoneRetainFields to java.time equivalent Rewrite DateTime withZoneRetainFields to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite getMillis() to .toInstant().toEpochMilli() Rewrite getMillis() to .toInstant().toEpochMilli() java warning framework specificjava.timeJoda-Timequality
Rewrite isAfterNow to java.time equivalent Rewrite isAfterNow to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite isBeforeNow to java.time equivalent Rewrite isBeforeNow to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite minus millis method call to java.time equivalent Rewrite minus millis method call to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite plus millis to java.time equivalent Rewrite plus millis to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite toDate() to java.time equivalent Rewrite toDate() to java.time equivalent java warning java.timeframework specificJoda-Timequality
Rewrite toDateMidnight() to java.time equivalent Rewrite toDateMidnight() to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite toDateTime(DateTimeZone) to java.time equivalent Rewrite toDateTime(DateTimeZone) to java.time equivalent java warning framework specificjava.timeJoda-Timequality
Rewrite toGregorianCalendar to GregorianCalendar.from(ZonedDateTime) Rewrite toGregorianCalendar to GregorianCalendar.from(ZonedDateTime) java warning java.timeframework specificJoda-Timequality
Rewrite toTimeOfDay() to toLocalTime() Rewrite toTimeOfDay() to toLocalTime() java warning java.timeframework specificJoda-Timequality
Rewrite toYearMonthDay() to toLocalDate() Rewrite toYearMonthDay() to toLocalDate() java warning java.timeframework specificJoda-Timequality
JodaTimeToJavaTime/DateTimeFormat
Convert Joda-Time DateTimeFormat.forPattern to java.time.format.DateTimeFormatter.ofPattern Convert Joda-Time DateTimeFormat.forPattern to java.time.format.DateTimeFormatter.ofPattern java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.fullDate() Convert Joda-Time DateTimeFormat.fullDate() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.fullDateTime() Convert Joda-Time DateTimeFormat.fullDateTime() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.fullTime() Convert Joda-Time DateTimeFormat.fullTime() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.longDate() Convert Joda-Time DateTimeFormat.longDate() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.longDateTime() Convert Joda-Time DateTimeFormat.longDateTime() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.longTime() Convert Joda-Time DateTimeFormat.longTime() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.mediumDate() Convert Joda-Time DateTimeFormat.mediumDate() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.mediumDateTime() Convert Joda-Time DateTimeFormat.mediumDateTime() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.mediumTime() Convert Joda-Time DateTimeFormat.mediumTime() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.shortDate() Convert Joda-Time DateTimeFormat.shortDate() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.shortDateTime() Convert Joda-Time DateTimeFormat.shortDateTime() java warning framework specificjava.timeJoda-Timequality
Convert Joda-Time DateTimeFormat.shortTime() Convert Joda-Time DateTimeFormat.shortTime() java warning framework specificjava.timeJoda-Timequality
JodaTimeToJavaTime/DateTimeFormatter
Convert Return type to java.time.DateTimeFormatter Convert Return type to java.time.DateTimeFormatter javakotlin warning framework specificjava.timeJoda-Timequality
Convert field to java.time.DateTimeFormatter Convert field to java.time.DateTimeFormatter java warning framework specificjava.timeJoda-Timequality
Convert print() to format() Convert print() to format() java error framework specificjava.timeJoda-Timequality
Convert print(Long) to format() Convert print(Long) to format() java error framework specificjava.timeJoda-Timequality
Convert printTo() to formatTo() Convert printTo() to formatTo() java error framework specificjava.timeJoda-Timequality
Convert printTo(appendable, long) to format(TemporalAccessor, Appendable) Convert printTo to formatTo java error framework specificjava.timeJoda-Timequality
Remove obsolete withOffsetParsed() Method Call Remove obsolete withOffsetParsed() Method Call java warning framework specificjava.timeJoda-Timequality
JodaTimeToJavaTime/DateTimeFormatter/Methods
Convert DateTimeFormatter withZoneUTC to java.time equivalent Convert DateTimeFormatter withZoneUTC to java.time equivalent java error framework specificjava.timeJoda-Timequality
Convert parseDateTime to java.time version Convert parseDateTime to java.time version java error framework specificjava.timeJoda-Timequality
Convert parseLocalDate to java.time version Convert parseLocalDate to java.time version java error framework specificjava.timeJoda-Timequality
Convert parseLocalDateTime to java.time version Convert parseLocalDateTime to java.time version java error framework specificjava.timeJoda-Timequality
Convert parseLocalTime to java.time version Convert parseLocalTime to java.time version java error framework specificjava.timeJoda-Timequality
Convert parseMillis to java.time version Convert parseMillis to java.time version java error framework specificjava.timeJoda-Timequality
Convert parseMutableDateTime to java.time Convert parseMutableDateTime to java.time java error framework specificjava.timeJoda-Timequality
DateTimeFormatter deprecated getChronolgy DateTimeFormatter deprecated getChronolgy java error framework specificjava.timeJoda-Timequality
DateTimeFormatter has no equivalent method in java.time DateTimeFormatter has no equivalent method in java.time java marked_information framework specificjava.timeJoda-Timequality
JodaTimeToJavaTime/DateTimeFormatterBuilder
Argument needs to be migrated from DateTimeFieldType to TemporalField Argument needs to be migrated from DateTimeFieldType to TemporalField java warning java.timeframework specificJoda-Timequality
Argument needs to be migrated from DateTimeFieldType to TemporalField Argument needs to be migrated from DateTimeFieldType to TemporalField java warning java.timeframework specificJoda-Timequality
Argument needs to be migrated from DateTimeFieldType to java.time.TemporalField Argument needs to be migrated from DateTimeFieldType to java.time.TemporalField java warning java.timeframework specificJoda-Timequality
Argument needs to be migrated from DateTimeParser to java.time.format.DateTimeFormatter Argument needs to be migrated from DateTimeParser to java.time.format.DateTimeFormatter java warning java.timeframework specificJoda-Timequality
Argument needs to be migrated to java.time.format.DateTimeFormatter Argument needs to be migrated to java.time.format.DateTimeFormatter java warning java.timeframework specificJoda-Timequality
Century of Era is not supported in java.time Century of Era is not supported in java.time java warning java.timeframework specificJoda-Timequality
Convert DateTimeFormatterBuilder to java.time Convert DateTimeFormatterBuilder to java.time java warning framework specificjava.timeJoda-Timequality
Convert appendDecimal to appendValue Convert appendDecimal to appendValue java warning java.timeframework specificJoda-Timequality
Convert appendSignedDecimal to appendValue Convert appendSignedDecimal to appendValue java warning java.timeframework specificJoda-Timequality
Convert appendSomethingShortText to appendText(ChronoField.SOMETHING,TextStyle.SHORT) Convert appendSomethingShortText to appendText(ChronoField.SOMETHING,TextStyle.SHORT) java warning java.timeframework specificJoda-Timequality
Convert appendSomethingText to appendText(ChronoField.SOMETHING) Convert appendSomethingText to appendText(ChronoField.SOMETHING) java warning java.timeframework specificJoda-Timequality
DateTimeFormatterBuilder Joda-Time method is obsolete in java.time DateTimeFormatterBuilder Joda-Time method is obsolete in java.time java warning java.timeframework specificJoda-Timequality
DateTimeFormatterBuilder Joda-Time toParser/toPrinter is obsolete in java.time DateTimeFormatterBuilder Joda-Time toParser/toPrinter is obsolete in java.time java warning java.timeframework specificJoda-Timequality
Rewrite appendClockhourOfDay to appendValue Rewrite appendClockhourOfDay to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendClockhourOfHalfday to appendValue Rewrite appendClockhourOfHalfday to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendDayOfMonth to appendValue Rewrite appendDayOfMonth to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendDayOfWeek to appendValue Rewrite appendDayOfWeek to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendDayOfYear to appendValue Rewrite appendDayOfYear to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendFixedDecimal to appendValue Rewrite appendFixedDecimal to appendValue java warning framework specificjava.timeJoda-Timequality
Rewrite appendFixedSignedDecimal to appendValue Rewrite appendFixedSignedDecimal to appendValue java warning framework specificjava.timeJoda-Timequality
Rewrite appendFractionOfDay to appendFraction Rewrite appendFractionOfDay to appendFraction java warning java.timeframework specificJoda-Timequality
Rewrite appendFractionOfHour to appendFraction Rewrite appendFractionOfHour to appendFraction java warning java.timeframework specificJoda-Timequality
Rewrite appendFractionOfMinute to appendFraction Rewrite appendFractionOfMinute to appendFraction java warning java.timeframework specificJoda-Timequality
Rewrite appendFractionOfSecond to appendFraction Rewrite appendFractionOfSecond to appendFraction java warning java.timeframework specificJoda-Timequality
Rewrite appendHourOfDay to appendValue Rewrite appendHourOfDay to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendHourOfHalfday to appendValue Rewrite appendHourOfHalfday to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendMillisOfDay to appendValue Rewrite appendMillisOfDay to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendMillisOfSecond to appendValue Rewrite appendMillisOfSecond to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendMinuteOfDay to appendValue Rewrite appendMinuteOfDay to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendMinuteOfHour to appendValue Rewrite appendMinuteOfHour to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendMonthOfYear to appendValue Rewrite appendMonthOfYear to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendSecondOfDay to appendValue Rewrite appendSecondOfDay to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendSecondOfMinute to appendValue Rewrite appendSecondOfMinute to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendTimeZoneName to appendZoneText Rewrite appendTimeZoneName to appendZoneText java warning java.timeframework specificJoda-Timequality
Rewrite appendTimeZoneName to appendZoneText Rewrite appendTimeZoneName to appendZoneText java warning java.timeframework specificJoda-Timequality
Rewrite appendTimeZoneShortName to appendZoneText Rewrite appendTimeZoneShortName to appendZoneText java warning java.timeframework specificJoda-Timequality
Rewrite appendTimeZoneShortName to appendZoneText Rewrite appendTimeZoneShortName to appendZoneText java warning java.timeframework specificJoda-Timequality
Rewrite appendWeekOfWeekyear to appendValue Rewrite appendWeekOfWeekyear to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendWeekyear to appendValue Rewrite appendWeekyear to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendYear to appendValue Rewrite appendYear to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite appendYearOfCentury to appendPattern Rewrite appendYearOfCentury to appendPattern java warning java.timeframework specificJoda-Timequality
Rewrite appendYearOfEra to appendValue Rewrite appendYearOfEra to appendValue java warning java.timeframework specificJoda-Timequality
Rewrite clear() using re-instantiation Rewrite clear() using re-instantiation java warning java.timeframework specificJoda-Timequality
Second argument should be a Set<ZoneId> instead of Map<String, org.joda.time.DateTimeZone> Second argument should be a Set<ZoneId> instead of Map<String, org.joda.time.DateTimeZone> java warning java.timeframework specificJoda-Timequality
appendShortText is different in java.time appendShortText is different in java.time java warning java.timeframework specificJoda-Timequality
appendTimeZoneId is now appendZoneId appendTimeZoneId is now appendZoneId java warning java.timeframework specificJoda-Timequality
appendTimeZoneOffset is now appendOffsetId appendTimeZoneOffset is now appendOffsetId java warning java.timeframework specificJoda-Timequality
JodaTimeToJavaTime/DateTimeZone
Convert DateTimeZone forOffsetHoursMinutes to java.time.ZoneOffset Convert DateTimeZone forOffsetHoursMinutes to java.time.ZoneOffset java warning framework specificjava.timeJoda-Timequality
Convert DateTimeZone getDefault Convert DateTimeZone to ZoneId java warning framework specificjava.timeJoda-Timequality
Convert DateTimeZone to ZoneId Convert DateTimeZone to ZoneId java warning framework specificjava.timeJoda-Timequality
Convert DateTimeZone.UTC to java.time.ZoneOffset.UTC Convert DateTimeZone.UTC to java.time.ZoneOffset.UTC java warning framework specificjava.timeJoda-Timequality
Convert DateTimeZone.forOffsetHours to java.time.ZoneOffset Convert DateTimeZone.forOffsetHours to java.time.ZoneOffset java warning framework specificjava.timeJoda-Timequality
Convert DateTimeZone.forOffsetMillis to java.time.ZoneOffset Convert DateTimeZone.forOffsetMillis to java.time.ZoneOffset java warning framework specificjava.timeJoda-Timequality
Convert DateTimeZone.forTimeZone to ZoneId.forID Convert DateTimeZone.forTimeZone to ZoneId.forID java warning framework specificjava.timeJoda-Timequality
Convert DateTimeZone.getAvailableIds to java.time equivalent Convert DateTimeZone.getAvailableIds to java.time equivalent java warning java.timeframework specificJoda-Timequality
Convert DateTimeZone.getName to java.time equivalent Convert DateTimeZone.getName to java.time equivalent java warning java.timeframework specificJoda-Timequality
Convert DateTimeZone.getName to java.time equivalent Convert DateTimeZone.getName to java.time equivalent java warning java.timeframework specificJoda-Timequality
Convert DateTimeZone.getShortName to java.time equivalent Convert DateTimeZone.getShortName to java.time equivalent java warning java.timeframework specificJoda-Timequality
Convert DateTimeZone.getShortName to java.time equivalent Convert DateTimeZone.getShortName to java.time equivalent java warning java.timeframework specificJoda-Timequality
Convert DateTimeZone[] to ZoneId[] Convert DateTimeZone[] to ZoneId[] java warning framework specificjava.timeJoda-Timequality
Convert toTimeZone to TimeZone.getTimeZone(ZoneId) Convert toTimeZone to TimeZone.getTimeZone(ZoneId) java warning java.timeframework specificJoda-Timequality
Migrate DateTimeZone parameter to java.time Migrate DateTimeZone parameter to java.time java warning framework specificjava.timeJoda-Timequality
Migrate DateTimeZone return type to java.time Migrate DateTimeZone return type to java.time javakotlin warning framework specificjava.timeJoda-Timequality
Markdown badge: