{"id":535,"date":"2010-04-01T21:33:43","date_gmt":"2010-04-01T17:33:43","guid":{"rendered":"http:\/\/robert.kolatzek.org\/wblog\/535\/die-katholiken-und-ihre-feste-und-java"},"modified":"2010-04-01T21:33:43","modified_gmt":"2010-04-01T17:33:43","slug":"die-katholiken-und-ihre-feste-und-java","status":"publish","type":"post","link":"https:\/\/blog.kolatzek.org\/wblog\/535\/die-katholiken-und-ihre-feste-und-java","title":{"rendered":"Die Katholiken und ihre Feste &#8230;und Java"},"content":{"rendered":"<p>Das mit den Ostertagen, Adventssontagen oder der Christi Himmelfahrt ist so eine Sache. Der kirchliche Kalender geht nach dem Mond (Teilweise jedenfalls). F\u00fcr diejenigen, die &#8211; genauso wie ich &#8211; wissen wollen, ob an einem bestimmten Tag der normale Fahrplan zu pr\u00e4sentieren ist oder der vom Sonntag [ aber auch f\u00fcr alle Katholiken, die in ihrem java-Programm schnell pr\u00fcfen wollen, ob da nicht ein wichtiger christlicher Feiertag f\u00e4llt ] gibt es die sch\u00f6ne Klasse CatholicCalendar. Es ist meine eigene Entwicklung. Sie enth\u00e4lt zwar nicht alle katholischen Feiertage (25.03 oder 15.08 sind nicht dabei, weil sie nicht \u00fcberall gelten und sonst wie gepr\u00fcft werden k\u00f6nnen).<br \/>\nDie methoden sind statisch, so kann man es ohne eine Initialisierung (ad hoc) verwenden:<\/p>\n<p><code>if(CatholicCalendar.isMaundyThursday(new Date()))<br \/>\n{<br \/>\n System.out.println(\"Heute ist Gr\u00fcndonnerstag\");<br \/>\n}<\/code><\/p>\n<p><!--more--><br \/>\n&#8230;und siehe da: Heute ist Gr\u00fcndonnerstag (was auch stimmt)<br \/>\nBTW: &#8222;Gr\u00fcndonnerstag&#8220; hat nichts mit &#8222;Gr\u00fcn&#8220; zu tun, sondern mit &#8222;Greinen&#8220; (altert\u00fcmlich f\u00fcr &#8222;Weinen&#8220;)!<br \/>\n<a title=\"Die Berechnung des Ostertages\" href=\"http:\/\/www.rottensteiner.at\/wblog\/news-of-the-day\/der-richtige-zeitpunkt-fr-ostern\/\" target=\"_blank\">Eine Antwort auf die Frage &#8222;Warum ist Ostern mal Fr\u00fcher, mal sp\u00e4ter?&#8220; sucht findet diese hier<\/a>.<br \/>\nUnd hier ist die Klasse (CatholicCalendar.java):<br \/>\n<code style=\"overflow: auto;width: auto\"><br \/>\n\/**<br \/>\n* A class to check if a date (Date object) is a catholic holiday (or one of special days)<br \/>\n* @author RK<br \/>\n* @license GPLv3<br \/>\n*\/<br \/>\nimport java.util.*;<br \/>\npublic class CatholicCalendar {<\/p>\n<p>  public static GregorianCalendar prepareDate(Date d)<br \/>\n  {<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    return new GregorianCalendar(c.get(Calendar.YEAR), c.get(Calendar.MONTH), c.get(Calendar.DAY_OF_MONTH));<br \/>\n  }<\/p>\n<p>  \/**<br \/>\n  * Return true if given date is first sunday in advent (Ad te levavi)<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isFirstAdvent(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 12-1, 24);<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -21);<br \/>\n    for (int i = 0; e.get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY; i++) {<br \/>\n      e.add(Calendar.DAY_OF_YEAR, -1);<br \/>\n    }<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<\/p>\n<p>  \/**<br \/>\n  * Return true if given date is second sunday in advent (Populus Sion)<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isSecondAdvent(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 12-1, 24);<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -14);<br \/>\n    for (int i = 0; e.get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY; i++) {<br \/>\n      e.add(Calendar.DAY_OF_YEAR, -1);<br \/>\n    }<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<\/p>\n<p>  \/**<br \/>\n  * Return true if given date is third sunday in advent (Gaudete)<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isThirsAdvent(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 12-1, 24);<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -7);<br \/>\n    for (int i = 0; e.get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY; i++) {<br \/>\n      e.add(Calendar.DAY_OF_YEAR, -1);<br \/>\n    }<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<\/p>\n<p>  \/**<br \/>\n  * Return true if given date is fourth sunday in advent (Rorate)<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isFourthAdvent(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 12-1, 24);<br \/>\n    for (int i = 0; e.get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY; i++) {<br \/>\n      e.add(GregorianCalendar.DAY_OF_YEAR, -1);<br \/>\n    }<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<\/p>\n<p>  \/**<br \/>\n  * Return true if given date is first Christmas day<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isChristmasDay(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 12-1, 25);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is second christmas day<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isStStephansDay(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 12-1, 26);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is second christmas day<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isHollyFamilySunday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 12-1, 26);<br \/>\n    if (e.compareTo(t) == -1) {<br \/>\n      for (int i = 0; e.get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY; i++) {<br \/>\n        e.add(Calendar.DAY_OF_YEAR, +1);<br \/>\n      }<br \/>\n      if (e.compareTo(t) == 0) {<br \/>\n        return true;<br \/>\n      }<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is New Year's Day<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isNewYearsDay(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 1-1, 1);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Epiphany (Three Kings)<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isEpiphany(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar(c.get(Calendar.YEAR), 1-1, 6);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Ash Wednesday<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isAshWednesday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -46);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Laetare Sunday<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isLaetare(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -21);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Palm Sunday<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isPalmSunday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -7);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Maundy Thursday de: \"Gr\u00fcndonnerstag\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isMaundyThursday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -3);<br \/>\n    System.out.println(e.toString());<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Good Friday de: \"Karfreitag\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isGoodFriday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -2);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Holy Saturday de: \"Karsammstag\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isHolySaturday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, -1);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return Easter date for a given year<br \/>\n  *<br \/>\n  * @param year<br \/>\n  * int must be &gt; 1583<br \/>\n  * @return Easter date as GregorianCalendar object<br \/>\n  *\/<br \/>\n  public static Calendar easterDate(int year) {<br \/>\n    int modulo19 = year % 19;<br \/>\n    int cent = (int) (year \/ 100);<br \/>\n    int centAdd = year % 100;<br \/>\n    int i = (19 * modulo19 + cent - (cent \/ 4)<br \/>\n    - ((cent - ((cent + 8 ) \/ 25) + 1) \/ 3) + 15) % 30;<br \/>\n    int j = (32 + 2 * (cent % 4) + 2 * (centAdd \/ 4) - i - (centAdd % 4)) % 7;<br \/>\n    int k = i + j - 7 * ((modulo19 + 11 * i + 22 * j) \/ 451) + 114;<br \/>\n    int month = k \/ 31;<br \/>\n    int day = (k % 31) + 1;<br \/>\n    return new GregorianCalendar(year, month - 1, day);<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Easter Sunday de: \"Ostersonntag\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isEasterSunday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Easter Monday de: \"Ostermontag\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isEasterMonday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, +1);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Ascension de: \"Christi Himmelfahrt\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isAscension(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, +39);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Pentecost Sunday de: \"Pfingstsonntag\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isPentecostSunday(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, +49);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Pentecost Monday de: \"Pfingstmontag\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isPentecostMontag(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, +50);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Corpus Christi de: \"Fronleichnahm\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isCorpusChristi(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, +60);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is Trinitas de: \"Dreifaltigkeitssontag\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * Date to check<br \/>\n  * @return boolean true if so<br \/>\n  *\/<br \/>\n  public static boolean isTrinitas(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = easterDate(c.get(Calendar.YEAR));<br \/>\n    e.add(Calendar.DAY_OF_YEAR, +66);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n  \/**<br \/>\n  * Return true if given date is All Saints' Day de: \"Allerheiligen\"<br \/>\n  *<br \/>\n  * @param d<br \/>\n  * @return<br \/>\n  *\/<br \/>\n  public static boolean isAllSaintsDay(Date d) {<br \/>\n    GregorianCalendar t = prepareDate(d);<br \/>\n    Calendar c = Calendar.getInstance();<br \/>\n    c.setTime(d);<br \/>\n    Calendar e = new GregorianCalendar (c.get(Calendar.YEAR), 11-1, 1);<br \/>\n    if (e.compareTo(t) == 0) {<br \/>\n      return true;<br \/>\n    }<br \/>\n    return false;<br \/>\n  }<br \/>\n}<br \/>\n<\/code><\/p>\n<p>Hoffe, habe keinen Fehler. Getestet habe ich es jedenfalls nur teilweise!<\/p>\n<p>Ach so! habe ich schon erw\u00e4hnt, dass der erste Tag der Woche Sonntag ist? Jedenfalls nach der j\u00fcdisch-christlichen Tradition. Nach ISO-schlagmichtot ist es der Montag&#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Das mit den Ostertagen, Adventssontagen oder der Christi Himmelfahrt ist so eine Sache. Der kirchliche Kalender geht nach dem Mond (Teilweise jedenfalls). F\u00fcr diejenigen, die &#8211; genauso wie ich &#8211; wissen wollen, ob an einem bestimmten Tag der normale Fahrplan zu pr\u00e4sentieren ist oder der vom Sonntag [ aber auch f\u00fcr alle Katholiken, die in [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"on","ocean_gallery_id":[],"footnotes":""},"categories":[8,6],"tags":[54,92,101,103],"class_list":["post-535","post","type-post","status-publish","format-standard","hentry","category-software","category-philosophie-und-religion","tag-java","tag-religion","tag-software-co","tag-sonntag","entry"],"_links":{"self":[{"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/posts\/535","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/comments?post=535"}],"version-history":[{"count":0,"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/posts\/535\/revisions"}],"wp:attachment":[{"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/media?parent=535"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/categories?post=535"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.kolatzek.org\/wblog\/wp-json\/wp\/v2\/tags?post=535"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}