| java.lang.Object com.ibm.icu.util.Holiday com.ibm.icu.util.EasterHoliday
EasterHoliday | public class EasterHoliday extends Holiday (Code) | | A Holiday subclass which represents holidays that occur
a fixed number of days before or after Easter. Supports both the
Western and Orthodox methods for calculating Easter.
|
Constructor Summary | |
public | EasterHoliday(String name) | public | EasterHoliday(int daysAfter, String name) Construct a holiday that falls a specified number of days before
or after Easter Sunday each year. | public | EasterHoliday(int daysAfter, boolean orthodox, String name) Construct a holiday that falls a specified number of days before
or after Easter Sunday each year, using either the Western
or Orthodox calendar. |
ASH_WEDNESDAY | final public static EasterHoliday ASH_WEDNESDAY(Code) | | Ash Wednesday, start of Lent, 47 days before Easter
|
CORPUS_CHRISTI | final public static EasterHoliday CORPUS_CHRISTI(Code) | | Corpus Christi, 60 days after Easter
|
EASTER_MONDAY | final public static EasterHoliday EASTER_MONDAY(Code) | | Easter Monday, 1 day after Easter
|
GOOD_FRIDAY | final public static EasterHoliday GOOD_FRIDAY(Code) | | Good Friday, 2 days before Easter
|
MAUNDY_THURSDAY | final public static EasterHoliday MAUNDY_THURSDAY(Code) | | Maundy Thursday, 3 days before Easter
|
PALM_SUNDAY | final public static EasterHoliday PALM_SUNDAY(Code) | | Palm Sunday, 7 days before Easter
|
PENTECOST | final public static EasterHoliday PENTECOST(Code) | | Pentecost (aka Whit Sunday), 49 days after Easter
|
SHROVE_TUESDAY | final public static EasterHoliday SHROVE_TUESDAY(Code) | | Shrove Tuesday, aka Mardi Gras, 48 days before Easter
|
WHIT_MONDAY | final public static EasterHoliday WHIT_MONDAY(Code) | | Whit Monday, 50 days after Easter
|
WHIT_SUNDAY | final public static EasterHoliday WHIT_SUNDAY(Code) | | Whit Sunday (aka Pentecost), 49 days after Easter
|
EasterHoliday | public EasterHoliday(String name)(Code) | | Construct a holiday that falls on Easter Sunday every year
Parameters: name - The name of the holiday |
EasterHoliday | public EasterHoliday(int daysAfter, String name)(Code) | | Construct a holiday that falls a specified number of days before
or after Easter Sunday each year.
Parameters: daysAfter - The number of days before (-) or after (+) Easter Parameters: name - The name of the holiday |
EasterHoliday | public EasterHoliday(int daysAfter, boolean orthodox, String name)(Code) | | Construct a holiday that falls a specified number of days before
or after Easter Sunday each year, using either the Western
or Orthodox calendar.
Parameters: daysAfter - The number of days before (-) or after (+) Easter Parameters: orthodox - Use the Orthodox calendar? Parameters: name - The name of the holiday |
|
|