diff --git a/README.md b/README.md index 55b6b831..0394bec3 100644 --- a/README.md +++ b/README.md @@ -119,15 +119,6 @@ cron-utils is available on Maven central repository. //Time to next execution Duration timeToNextExecution = executionTime.timeToNextExecution(now); -***Map constants between libraries*** - - //Map day of week value from Quartz to JodaTime - int jodatimeDayOfWeek = - ConstantsMapper.weekDayMapping( - ConstantsMapper.QUARTZ_WEEK_DAY, - ConstantsMapper.JODATIME_WEEK_DAY - ); - ***Date and time formatting for humans!*** //You no longer need to remember "YYYY-MM-dd KK a" patterns. @@ -138,6 +129,15 @@ cron-utils is available on Maven central repository. String formattedDateTime = formatter.print(lastExecution); //formattedDateTime will be lastExecution in "dayOfWeek, Month day, Year" format +***Map constants between libraries*** + + //Map day of week value from Quartz to JodaTime + int jodatimeDayOfWeek = + ConstantsMapper.weekDayMapping( + ConstantsMapper.QUARTZ_WEEK_DAY, + ConstantsMapper.JODATIME_WEEK_DAY + ); + **Contribute!**