src/java.base/share/classes/sun/util/BuddhistCalendar.java
author michaelm
Thu, 14 Nov 2019 15:01:49 +0000
branchunixdomainchannels
changeset 59082 5e250ee9259e
parent 57956 e0b8b019d2f5
permissions -rw-r--r--
unixdomainchannels: fix some sockaddr_un address handling
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 47216
diff changeset
     2
 * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
    28
import java.io.IOException;
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
    29
import java.io.ObjectInputStream;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.GregorianCalendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Locale;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.TimeZone;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    34
import sun.util.locale.provider.CalendarDataUtility;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
public class BuddhistCalendar extends GregorianCalendar {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
//////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
// Class Variables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
//////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 47216
diff changeset
    42
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private static final long serialVersionUID = -8527488697350388578L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
    45
    private static final int BUDDHIST_YEAR_OFFSET = 543;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
///////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
// Constructors
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
///////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * Constructs a default BuddhistCalendar using the current time
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * in the default time zone with the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    public BuddhistCalendar() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * Constructs a BuddhistCalendar based on the current time
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * in the given time zone with the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * @param zone the given time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    public BuddhistCalendar(TimeZone zone) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        super(zone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * Constructs a BuddhistCalendar based on the current time
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * in the default time zone with the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * @param aLocale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public BuddhistCalendar(Locale aLocale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        super(aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Constructs a BuddhistCalendar based on the current time
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * in the given time zone with the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * @param zone the given time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @param aLocale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    public BuddhistCalendar(TimeZone zone, Locale aLocale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        super(zone, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
/////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
// Public methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
/////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    /**
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    92
     * Returns {@code "buddhist"} as the calendar type of this Calendar.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    93
     */
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    94
    @Override
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    95
    public String getCalendarType() {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    96
        return "buddhist";
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    97
    }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    98
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
    99
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * Compares this BuddhistCalendar to an object reference.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @param obj the object reference with which to compare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * @return true if this object is equal to <code>obj</code>; false otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   104
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        return obj instanceof BuddhistCalendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            && super.equals(obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * Override hashCode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * Generates the hash code for the BuddhistCalendar object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   114
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public int hashCode() {
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   116
        return super.hashCode() ^ BUDDHIST_YEAR_OFFSET;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Gets the value for a given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @param field the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @return the value for the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   124
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public int get(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        if (field == YEAR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            return super.get(field) + yearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        return super.get(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * Sets the time field with the given value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @param field the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @param value the value to be set for the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   138
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    public void set(int field, int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        if (field == YEAR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            super.set(field, value - yearOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            super.set(field, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * Adds the specified (signed) amount of time to the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @param field the time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @param amount the amount of date or time to be added to the field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   153
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public void add(int field, int amount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        int savedYearOffset = yearOffset;
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   157
        // To let the superclass calculate date-time values correctly,
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   158
        // temporarily make this GregorianCalendar.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        yearOffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            super.add(field, amount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            yearOffset = savedYearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * Add to field a signed amount without changing larger fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * A negative roll amount means to subtract from field without changing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * larger fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @param field the time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @param amount the signed amount to add to <code>field</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   174
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    public void roll(int field, int amount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        int savedYearOffset = yearOffset;
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   178
        // To let the superclass calculate date-time values correctly,
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   179
        // temporarily make this GregorianCalendar.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        yearOffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            super.roll(field, amount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            yearOffset = savedYearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   188
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    public String getDisplayName(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        if (field != ERA) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            return super.getDisplayName(field, style, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   194
        return CalendarDataUtility.retrieveFieldValueName("buddhist", field, get(field), style, locale);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   197
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    public Map<String,Integer> getDisplayNames(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        if (field != ERA) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            return super.getDisplayNames(field, style, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        }
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   202
        return CalendarDataUtility.retrieveFieldValueNames("buddhist", field, style, locale);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * Returns the maximum value that this field could have, given the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * current date.  For example, with the date "Feb 3, 2540" and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * <code>DAY_OF_MONTH</code> field, the actual maximum is 28; for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * "Feb 3, 2539" it is 29.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @param field the field to determine the maximum of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * @return the maximum of the given field for the current date of this Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   214
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    public int getActualMaximum(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        int savedYearOffset = yearOffset;
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   217
        // To let the superclass calculate date-time values correctly,
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   218
        // temporarily make this GregorianCalendar.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        yearOffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            return super.getActualMaximum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            yearOffset = savedYearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   227
    @Override
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 7668
diff changeset
   228
    @SuppressWarnings("empty-statement")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        // The super class produces a String with the Gregorian year
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        // value (or '?')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        String s = super.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        // If the YEAR field is UNSET, then return the Gregorian string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        if (!isSet(YEAR)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        final String yearField = "YEAR=";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        int p = s.indexOf(yearField);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        // If the string doesn't include the year value for some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        // reason, then return the Gregorian string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        if (p == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        p += yearField.length();
31471
ae27c6f1d8bf 8077242: (str) Optimize AbstractStringBuilder.append(CharSequence, int, int) for String argument
igerasim
parents: 25859
diff changeset
   246
        StringBuilder sb = new StringBuilder(s.length() + 10);
ae27c6f1d8bf 8077242: (str) Optimize AbstractStringBuilder.append(CharSequence, int, int) for String argument
igerasim
parents: 25859
diff changeset
   247
        sb.append(s, 0, p);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        // Skip the year number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        while (Character.isDigit(s.charAt(p++)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            ;
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   251
        int year = internalGet(YEAR) + BUDDHIST_YEAR_OFFSET;
31471
ae27c6f1d8bf 8077242: (str) Optimize AbstractStringBuilder.append(CharSequence, int, int) for String argument
igerasim
parents: 25859
diff changeset
   252
        sb.append(year).append(s, p - 1, s.length());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   256
    private transient int yearOffset = BUDDHIST_YEAR_OFFSET;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 47216
diff changeset
   258
    @java.io.Serial
7504
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   259
    private void readObject(ObjectInputStream stream)
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   260
        throws IOException, ClassNotFoundException {
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   261
        stream.defaultReadObject();
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   262
        yearOffset = BUDDHIST_YEAR_OFFSET;
e490ef909bf5 6653944: (cal) BuddhistCalendar yearOffset erased when deserialized
okutsu
parents: 5506
diff changeset
   263
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
}