All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.threeten.extra.chrono.CopticChronology Maven / Gradle / Ivy

Go to download

Additional functionality that enhances JSR-310 dates and times in Java SE 8 and later

There is a newer version: 1.8.0
Show newest version
/*
 * Copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *  * Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 *
 *  * Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 *  * Neither the name of JSR-310 nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.threeten.extra.chrono;

import java.io.Serializable;
import java.time.Clock;
import java.time.DateTimeException;
import java.time.Instant;
import java.time.ZoneId;
import java.time.chrono.ChronoLocalDateTime;
import java.time.chrono.ChronoZonedDateTime;
import java.time.chrono.Chronology;
import java.time.chrono.Era;
import java.time.format.ResolverStyle;
import java.time.temporal.TemporalAccessor;
import java.time.temporal.TemporalField;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import java.util.Map;

/**
 * The Coptic calendar system.
 * 

* This chronology defines the rules of the Coptic calendar system. * This calendar system is primarily used in Christian Egypt. * Dates are aligned such that {@code 0001-01-01 (Coptic)} is {@code 0284-08-29 (ISO)}. *

* The fields are defined as follows: *

    *
  • era - There are two eras, the current 'Era of the Martyrs' (AM) and the previous era (BEFORE_AM). *
  • year-of-era - The year-of-era for the current era increases uniformly from the epoch at year one. * For the previous era the year increases from one as time goes backwards. *
  • proleptic-year - The proleptic year is the same as the year-of-era for the * current era. For the previous era, years have zero, then negative values. *
  • month-of-year - There are 13 months in a Coptic year, numbered from 1 to 13. *
  • day-of-month - There are 30 days in each of the first 12 Coptic months, numbered 1 to 30. * The 13th month has 5 days, or 6 in a leap year, numbered 1 to 5 or 1 to 6. *
  • day-of-year - There are 365 days in a standard Coptic year and 366 in a leap year. * The days are numbered from 1 to 365 or 1 to 366. *
  • leap-year - Leap years occur every 4 years. *
* *

Implementation Requirements

* This class is immutable and thread-safe. */ public final class CopticChronology extends AbstractNileChronology implements Serializable { /** * Singleton instance for the Coptic chronology. */ public static final CopticChronology INSTANCE = new CopticChronology(); /** * Serialization version. */ private static final long serialVersionUID = 7291205177830286973L; /** * Private constructor, that is public to satisfy the {@code ServiceLoader}. * @deprecated Use the singleton {@link #INSTANCE} instead. */ @Deprecated public CopticChronology() { } /** * Resolve singleton. * * @return the singleton instance, not null */ private Object readResolve() { return INSTANCE; } //----------------------------------------------------------------------- /** * Gets the ID of the chronology - 'Coptic'. *

* The ID uniquely identifies the {@code Chronology}. * It can be used to lookup the {@code Chronology} using {@link Chronology#of(String)}. * * @return the chronology ID - 'Coptic' * @see #getCalendarType() */ @Override public String getId() { return "Coptic"; } /** * Gets the calendar type of the underlying calendar system - 'coptic'. *

* The calendar type is an identifier defined by the * Unicode Locale Data Markup Language (LDML) specification. * It can be used to lookup the {@code Chronology} using {@link Chronology#of(String)}. * It can also be used as part of a locale, accessible via * {@link Locale#getUnicodeLocaleType(String)} with the key 'ca'. * * @return the calendar system type - 'coptic' * @see #getId() */ @Override public String getCalendarType() { return "coptic"; } //----------------------------------------------------------------------- /** * Obtains a local date in Coptic calendar system from the * era, year-of-era, month-of-year and day-of-month fields. * * @param era the Coptic era, not null * @param yearOfEra the year-of-era * @param month the month-of-year * @param dayOfMonth the day-of-month * @return the Coptic local date, not null * @throws DateTimeException if unable to create the date * @throws ClassCastException if the {@code era} is not a {@code CopticEra} */ @Override public CopticDate date(Era era, int yearOfEra, int month, int dayOfMonth) { return date(prolepticYear(era, yearOfEra), month, dayOfMonth); } /** * Obtains a local date in Coptic calendar system from the * proleptic-year, month-of-year and day-of-month fields. * * @param prolepticYear the proleptic-year * @param month the month-of-year * @param dayOfMonth the day-of-month * @return the Coptic local date, not null * @throws DateTimeException if unable to create the date */ @Override public CopticDate date(int prolepticYear, int month, int dayOfMonth) { return CopticDate.of(prolepticYear, month, dayOfMonth); } /** * Obtains a local date in Coptic calendar system from the * era, year-of-era and day-of-year fields. * * @param era the Coptic era, not null * @param yearOfEra the year-of-era * @param dayOfYear the day-of-year * @return the Coptic local date, not null * @throws DateTimeException if unable to create the date * @throws ClassCastException if the {@code era} is not a {@code CopticEra} */ @Override public CopticDate dateYearDay(Era era, int yearOfEra, int dayOfYear) { return dateYearDay(prolepticYear(era, yearOfEra), dayOfYear); } /** * Obtains a local date in Coptic calendar system from the * proleptic-year and day-of-year fields. * * @param prolepticYear the proleptic-year * @param dayOfYear the day-of-year * @return the Coptic local date, not null * @throws DateTimeException if unable to create the date */ @Override public CopticDate dateYearDay(int prolepticYear, int dayOfYear) { return CopticDate.ofYearDay(prolepticYear, dayOfYear); } /** * Obtains a local date in the Coptic calendar system from the epoch-day. * * @param epochDay the epoch day * @return the Coptic local date, not null * @throws DateTimeException if unable to create the date */ @Override // override with covariant return type public CopticDate dateEpochDay(long epochDay) { return CopticDate.ofEpochDay(epochDay); } //------------------------------------------------------------------------- /** * Obtains the current Coptic local date from the system clock in the default time-zone. *

* This will query the {@link Clock#systemDefaultZone() system clock} in the default * time-zone to obtain the current date. *

* Using this method will prevent the ability to use an alternate clock for testing * because the clock is hard-coded. * * @return the current Coptic local date using the system clock and default time-zone, not null * @throws DateTimeException if unable to create the date */ @Override // override with covariant return type public CopticDate dateNow() { return CopticDate.now(); } /** * Obtains the current Coptic local date from the system clock in the specified time-zone. *

* This will query the {@link Clock#system(ZoneId) system clock} to obtain the current date. * Specifying the time-zone avoids dependence on the default time-zone. *

* Using this method will prevent the ability to use an alternate clock for testing * because the clock is hard-coded. * * @param zone the zone ID to use, not null * @return the current Coptic local date using the system clock, not null * @throws DateTimeException if unable to create the date */ @Override // override with covariant return type public CopticDate dateNow(ZoneId zone) { return CopticDate.now(zone); } /** * Obtains the current Coptic local date from the specified clock. *

* This will query the specified clock to obtain the current date - today. * Using this method allows the use of an alternate clock for testing. * The alternate clock may be introduced using {@link Clock dependency injection}. * * @param clock the clock to use, not null * @return the current Coptic local date, not null * @throws DateTimeException if unable to create the date */ @Override // override with covariant return type public CopticDate dateNow(Clock clock) { return CopticDate.now(clock); } //------------------------------------------------------------------------- /** * Obtains a Coptic local date from another date-time object. * * @param temporal the date-time object to convert, not null * @return the Coptic local date, not null * @throws DateTimeException if unable to create the date */ @Override public CopticDate date(TemporalAccessor temporal) { return CopticDate.from(temporal); } /** * Obtains a Coptic local date-time from another date-time object. * * @param temporal the date-time object to convert, not null * @return the Coptic local date-time, not null * @throws DateTimeException if unable to create the date-time */ @Override @SuppressWarnings("unchecked") public ChronoLocalDateTime localDateTime(TemporalAccessor temporal) { return (ChronoLocalDateTime) super.localDateTime(temporal); } /** * Obtains a Coptic zoned date-time from another date-time object. * * @param temporal the date-time object to convert, not null * @return the Coptic zoned date-time, not null * @throws DateTimeException if unable to create the date-time */ @Override @SuppressWarnings("unchecked") public ChronoZonedDateTime zonedDateTime(TemporalAccessor temporal) { return (ChronoZonedDateTime) super.zonedDateTime(temporal); } /** * Obtains a Coptic zoned date-time in this chronology from an {@code Instant}. * * @param instant the instant to create the date-time from, not null * @param zone the time-zone, not null * @return the Coptic zoned date-time, not null * @throws DateTimeException if the result exceeds the supported range */ @Override @SuppressWarnings("unchecked") public ChronoZonedDateTime zonedDateTime(Instant instant, ZoneId zone) { return (ChronoZonedDateTime) super.zonedDateTime(instant, zone); } //----------------------------------------------------------------------- @Override public int prolepticYear(Era era, int yearOfEra) { if (era instanceof CopticEra == false) { throw new ClassCastException("Era must be CopticEra"); } return (era == CopticEra.AM ? yearOfEra : 1 - yearOfEra); } @Override public CopticEra eraOf(int eraValue) { return CopticEra.of(eraValue); } @Override public List eras() { return Arrays.asList(CopticEra.values()); } //----------------------------------------------------------------------- @Override // override for return type public CopticDate resolveDate(Map fieldValues, ResolverStyle resolverStyle) { return (CopticDate) super.resolveDate(fieldValues, resolverStyle); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy