Get week in month in hijri calendar in time4j

Viewed 251

I'm trying to set hijri calendar to for example 3rd Wednesday of hijri months.
After some search, I reach to this code:

 PlainDate date = PlainDate.of(2017, 3, 1); // first of march 2017
 System.out.println(date.with(WEEKDAY_IN_MONTH.setToThird(WEDNESDAY)));    

But as you can see this sets calendar to 3rd Wednesday of gregorian calendar.
Is there any way to set 3rd Wednesday of month for other calendars in time4j lib?

1 Answers
Related