I am looking for a way to get only week dates from local date(JODA TIME) API? I am trying write the code in this format..
LocalDate today = new LocalDate();
LocalDate getDate = new LocalDate(sqlDate);// i will recieve sqldate from sql table
//if the getdate and number of days to remind is equals to today
//and if it is between monday to friday ,send an email.
//ReminderDays is an integer
if(getDate+ReminderDays == today)
SendMail();
If possible please provide the code? Thank you.