I want to compare user selected date with from date and to date. e.g.,
from date : 2017-25-07
to date : 2017-31-07
Selected date : 2017-27-07
so now I want to check selected date is in the range between from date and to date.
you can compare three dates by below code
if(!fromDate.after(selectedDate) && !toDate.before(selectedDate)) {
//fromDate <= selectedDate <= toDate
}