isRecurringOnDaysOfWeek

If period is WEEKLY, checks if events happen on certain days of the week. Returns true only if recurrence happens on all of these days. To get the number of days set use Integer.bitCount(recurrence.byDay) - 1 (or recurrence.byDay.countOneBits() - 1 in Kotlin). Note that if the weekly recurrence has no days set, meaning it happens on the same day as the start date's, this method will always return false since this day is unknown. If period is MONTHLY, checks if events happen on a certain day of the week specified by a single flag set in days.

Parameters

days

A bit field of DaysOfWeek values.