jdk/src/share/classes/sun/util/BuddhistCalendar.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 2 90ce3da70b43
child 7504 e490ef909bf5
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2000, 2005, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.Calendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.GregorianCalendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.HashMap;
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.ResourceBundle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.TimeZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.util.resources.LocaleData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
public class BuddhistCalendar extends GregorianCalendar {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
//////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
// Class Variables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
//////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private static final long serialVersionUID = -8527488697350388578L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    private static final int buddhistOffset = 543;
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
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * Compares this BuddhistCalendar to an object reference.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * @param obj the object reference with which to compare
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @return true if this object is equal to <code>obj</code>; false otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        return obj instanceof BuddhistCalendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            && super.equals(obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * Override hashCode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * Generates the hash code for the BuddhistCalendar object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        return super.hashCode() ^ buddhistOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * Gets the value for a given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * @param field the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @return the value for the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    public int get(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        if (field == YEAR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            return super.get(field) + yearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        return super.get(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * Sets the time field with the given value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @param field the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @param value the value to be set for the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    public void set(int field, int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        if (field == YEAR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            super.set(field, value - yearOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            super.set(field, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Adds the specified (signed) amount of time to the given time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @param field the time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @param amount the amount of date or time to be added to the field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public void add(int field, int amount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        int savedYearOffset = yearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        yearOffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            super.add(field, amount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            yearOffset = savedYearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * Add to field a signed amount without changing larger fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * A negative roll amount means to subtract from field without changing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * larger fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * @param field the time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * @param amount the signed amount to add to <code>field</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    public void roll(int field, int amount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        int savedYearOffset = yearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        yearOffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            super.roll(field, amount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            yearOffset = savedYearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    public String getDisplayName(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        if (field != ERA) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            return super.getDisplayName(field, style, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        // Handle Thai BuddhistCalendar specific era names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        if (field < 0 || field >= fields.length ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            style < SHORT || style > LONG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        if (locale == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        ResourceBundle rb = LocaleData.getDateFormatData(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        String[] eras = rb.getStringArray(getKey(style));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        return eras[get(field)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    public Map<String,Integer> getDisplayNames(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        if (field != ERA) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            return super.getDisplayNames(field, style, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        // Handle Thai BuddhistCalendar specific era names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        if (field < 0 || field >= fields.length ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            style < ALL_STYLES || style > LONG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        if (locale == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        // ALL_STYLES
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        if (style == ALL_STYLES) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            Map<String,Integer> shortNames = getDisplayNamesImpl(field, SHORT, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            Map<String,Integer> longNames = getDisplayNamesImpl(field, LONG, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            if (shortNames == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
                return longNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
            if (longNames != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                shortNames.putAll(longNames);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            return shortNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        // SHORT or LONG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        return getDisplayNamesImpl(field, style, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    private Map<String,Integer> getDisplayNamesImpl(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        ResourceBundle rb = LocaleData.getDateFormatData(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        String[] eras = rb.getStringArray(getKey(style));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        Map<String,Integer> map = new HashMap<String,Integer>(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        for (int i = 0; i < eras.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            map.put(eras[i], i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        return map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    private String getKey(int style) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        StringBuilder key = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        key.append(BuddhistCalendar.class.getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        if (style == SHORT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            key.append(".short");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        key.append(".Eras");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        return key.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * Returns the maximum value that this field could have, given the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * current date.  For example, with the date "Feb 3, 2540" and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * <code>DAY_OF_MONTH</code> field, the actual maximum is 28; for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * "Feb 3, 2539" it is 29.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * @param field the field to determine the maximum of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * @return the maximum of the given field for the current date of this Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    public int getActualMaximum(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        int savedYearOffset = yearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        yearOffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            return super.getActualMaximum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            yearOffset = savedYearOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        // The super class produces a String with the Gregorian year
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        // value (or '?')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        String s = super.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        // If the YEAR field is UNSET, then return the Gregorian string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        if (!isSet(YEAR)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        final String yearField = "YEAR=";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        int p = s.indexOf(yearField);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        // If the string doesn't include the year value for some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        // reason, then return the Gregorian string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        if (p == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        p += yearField.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        StringBuilder sb = new StringBuilder(s.substring(0, p));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        // Skip the year number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        while (Character.isDigit(s.charAt(p++)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        int year = internalGet(YEAR) + buddhistOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        sb.append(year).append(s.substring(p - 1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    private transient int yearOffset = buddhistOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
}