/*
Zeitrechnung - a class library to determine calendar events
Copyright (c) 1984-2023 Ulrich Hilger, http://uhilger.de
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see
* Manche der Ereignisse in dieser Klasse unterscheiden sich hauptsaechlich * durch ihre Verschiebe-Regeln. Sobald ein Mechanismus zur Verschiebung * erstellt ist, koennen diese hier entfallen. *
* * @author Ulrich Hilger */ public class EinzelEreignis extends EreignisBasis { /** Typnummer fuer Schavuot */ public static final int EE_SCHAVUOT = 1; /** Typnummer fuer Purim */ public static final int EE_PURIM = 2; /** Typnummer fuer Ta Anit Esther */ public static final int EE_TA_ANIT_ESTHER = 3; /** Typnummer fuer Jom Ha Zikaron */ public static final int EE_JOM_HA_ZIKARON = 4; /** * Den Typ des Ereignisses ermitteln * * @return Ereignis.TYP_EINZEL */ @Override public int getTyp() { return Ereignis.TYP_EINZEL; } /** * Die Tage eines Jahres im gregorianischen Kalendersystem * ermitteln, an denen das Ereignis stattfindet. * * @param isoJahr das Jahr im gregorianischen Kalender, * fuer das ermittelt werden soll, an welchen Tagen das Ereignis stattfindet * @return die Liste aus Datum-Objekten, die die Tage im gregorianischen * Kalender bezeichnet, an denen das Ereignis stattfindet */ @Override public List