1 /*
2 * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 /*
27 * This file is available under and governed by the GNU General Public
28 * License version 2 only, as published by the Free Software Foundation.
29 * However, the following notice accompanied the original version of this
30 * file:
31 *
32 * Copyright (c) 2012, Stephen Colebourne & Michael Nascimento Santos
33 *
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions are met:
38 *
39 * * Redistributions of source code must retain the above copyright notice,
40 * this list of conditions and the following disclaimer.
41 *
42 * * Redistributions in binary form must reproduce the above copyright notice,
43 * this list of conditions and the following disclaimer in the documentation
44 * and/or other materials provided with the distribution.
45 *
46 * * Neither the name of JSR-310 nor the names of its contributors
47 * may be used to endorse or promote products derived from this software
48 * without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
54 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
55 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
56 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
57 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
58 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
59 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
60 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 */
62
63 package java.time.chrono;
64
65 import libcore.api.Hide;
66
67 @SuppressWarnings({"unchecked", "deprecation", "all"})
68 public interface Chronology extends java.lang.Comparable<java.time.chrono.Chronology> {
69
from(java.time.temporal.TemporalAccessor temporal)70 public static java.time.chrono.Chronology from(java.time.temporal.TemporalAccessor temporal) { throw new RuntimeException("Stub!"); }
71
ofLocale(java.util.Locale locale)72 public static java.time.chrono.Chronology ofLocale(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
73
of(java.lang.String id)74 public static java.time.chrono.Chronology of(java.lang.String id) { throw new RuntimeException("Stub!"); }
75
getAvailableChronologies()76 public static java.util.Set<java.time.chrono.Chronology> getAvailableChronologies() { throw new RuntimeException("Stub!"); }
77
getId()78 public java.lang.String getId();
79
getCalendarType()80 public java.lang.String getCalendarType();
81
date(java.time.chrono.Era era, int yearOfEra, int month, int dayOfMonth)82 public default java.time.chrono.ChronoLocalDate date(java.time.chrono.Era era, int yearOfEra, int month, int dayOfMonth) { throw new RuntimeException("Stub!"); }
83
date(int prolepticYear, int month, int dayOfMonth)84 public java.time.chrono.ChronoLocalDate date(int prolepticYear, int month, int dayOfMonth);
85
dateYearDay(java.time.chrono.Era era, int yearOfEra, int dayOfYear)86 public default java.time.chrono.ChronoLocalDate dateYearDay(java.time.chrono.Era era, int yearOfEra, int dayOfYear) { throw new RuntimeException("Stub!"); }
87
dateYearDay(int prolepticYear, int dayOfYear)88 public java.time.chrono.ChronoLocalDate dateYearDay(int prolepticYear, int dayOfYear);
89
dateEpochDay(long epochDay)90 public java.time.chrono.ChronoLocalDate dateEpochDay(long epochDay);
91
dateNow()92 public default java.time.chrono.ChronoLocalDate dateNow() { throw new RuntimeException("Stub!"); }
93
dateNow(java.time.ZoneId zone)94 public default java.time.chrono.ChronoLocalDate dateNow(java.time.ZoneId zone) { throw new RuntimeException("Stub!"); }
95
dateNow(java.time.Clock clock)96 public default java.time.chrono.ChronoLocalDate dateNow(java.time.Clock clock) { throw new RuntimeException("Stub!"); }
97
date(java.time.temporal.TemporalAccessor temporal)98 public java.time.chrono.ChronoLocalDate date(java.time.temporal.TemporalAccessor temporal);
99
localDateTime(java.time.temporal.TemporalAccessor temporal)100 public default java.time.chrono.ChronoLocalDateTime<? extends java.time.chrono.ChronoLocalDate> localDateTime(java.time.temporal.TemporalAccessor temporal) { throw new RuntimeException("Stub!"); }
101
zonedDateTime(java.time.temporal.TemporalAccessor temporal)102 public default java.time.chrono.ChronoZonedDateTime<? extends java.time.chrono.ChronoLocalDate> zonedDateTime(java.time.temporal.TemporalAccessor temporal) { throw new RuntimeException("Stub!"); }
103
zonedDateTime(java.time.Instant instant, java.time.ZoneId zone)104 public default java.time.chrono.ChronoZonedDateTime<? extends java.time.chrono.ChronoLocalDate> zonedDateTime(java.time.Instant instant, java.time.ZoneId zone) { throw new RuntimeException("Stub!"); }
105
isLeapYear(long prolepticYear)106 public boolean isLeapYear(long prolepticYear);
107
prolepticYear(java.time.chrono.Era era, int yearOfEra)108 public int prolepticYear(java.time.chrono.Era era, int yearOfEra);
109
eraOf(int eraValue)110 public java.time.chrono.Era eraOf(int eraValue);
111
eras()112 public java.util.List<java.time.chrono.Era> eras();
113
range(java.time.temporal.ChronoField field)114 public java.time.temporal.ValueRange range(java.time.temporal.ChronoField field);
115
getDisplayName(java.time.format.TextStyle style, java.util.Locale locale)116 public default java.lang.String getDisplayName(java.time.format.TextStyle style, java.util.Locale locale) { throw new RuntimeException("Stub!"); }
117
resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long> fieldValues, java.time.format.ResolverStyle resolverStyle)118 public java.time.chrono.ChronoLocalDate resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long> fieldValues, java.time.format.ResolverStyle resolverStyle);
119
period(int years, int months, int days)120 public default java.time.chrono.ChronoPeriod period(int years, int months, int days) { throw new RuntimeException("Stub!"); }
121
122 @Hide
epochSecond(int prolepticYear, int month, int dayOfMonth, int hour, int minute, int second, java.time.ZoneOffset zoneOffset)123 public default long epochSecond(int prolepticYear, int month, int dayOfMonth, int hour, int minute, int second, java.time.ZoneOffset zoneOffset) { throw new RuntimeException("Stub!"); }
124
125 @Hide
epochSecond(java.time.chrono.Era era, int yearOfEra, int month, int dayOfMonth, int hour, int minute, int second, java.time.ZoneOffset zoneOffset)126 public default long epochSecond(java.time.chrono.Era era, int yearOfEra, int month, int dayOfMonth, int hour, int minute, int second, java.time.ZoneOffset zoneOffset) { throw new RuntimeException("Stub!"); }
127
compareTo(java.time.chrono.Chronology other)128 public int compareTo(java.time.chrono.Chronology other);
129
equals(java.lang.Object obj)130 public boolean equals(java.lang.Object obj);
131
hashCode()132 public int hashCode();
133
toString()134 public java.lang.String toString();
135 }
136
137