jdk/src/share/classes/java/text/DateFormat.java
author dbhole
Thu, 24 May 2012 19:00:16 -0700
changeset 12848 da701d422d2c
parent 7668 d4a77089c587
child 13583 dc0017b1a452
permissions -rw-r--r--
7117230: clean up warnings in java.text Reviewed-by: jrose, smarks
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 6489
diff changeset
     2
 * Copyright (c) 1996, 2010, 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: 5283
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: 5283
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: 5283
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5283
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5283
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
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * (C) Copyright Taligent, Inc. 1996 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * (C) Copyright IBM Corp. 1996 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *   The original version of this source code and documentation is copyrighted
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * materials are provided under terms of a License Agreement between Taligent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * and Sun. This technology is protected by multiple US and International
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * patents. This notice and attribution to Taligent may not be removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *   Taligent is a registered trademark of Taligent, Inc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
package java.text;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.io.InvalidObjectException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.text.spi.DateFormatProvider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.util.Calendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.util.Date;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.util.GregorianCalendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import java.util.Locale;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import java.util.MissingResourceException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import java.util.ResourceBundle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import java.util.TimeZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import java.util.spi.LocaleServiceProvider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import sun.util.LocaleServiceProviderPool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
/**
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
    56
 * {@code DateFormat} is an abstract class for date/time formatting subclasses which
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * formats and parses dates or time in a language-independent manner.
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
    58
 * The date/time formatting subclass, such as {@link SimpleDateFormat}, allows for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * formatting (i.e., date -> text), parsing (text -> date), and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * normalization.  The date is represented as a <code>Date</code> object or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * as the milliseconds since January 1, 1970, 00:00:00 GMT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
    63
 * <p>{@code DateFormat} provides many class methods for obtaining default date/time
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * formatters based on the default or a given locale and a number of formatting
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
    65
 * styles. The formatting styles include {@link #FULL}, {@link #LONG}, {@link #MEDIUM}, and {@link #SHORT}. More
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * detail and examples of using these styles are provided in the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * descriptions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
    69
 * <p>{@code DateFormat} helps you to format and parse dates for any locale.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * Your code can be completely independent of the locale conventions for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * months, days of the week, or even the calendar format: lunar vs. solar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * <p>To format a date for the current Locale, use one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * static factory methods:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *  myString = DateFormat.getDateInstance().format(myDate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * <p>If you are formatting multiple dates, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * more efficient to get the format and use it multiple times so that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * the system doesn't have to fetch the information about the local
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * language and country conventions multiple times.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *  DateFormat df = DateFormat.getDateInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *  for (int i = 0; i < myDate.length; ++i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *    output.println(df.format(myDate[i]) + "; ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * <p>To format a date for a different Locale, specify it in the
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
    89
 * call to {@link #getDateInstance(int, Locale) getDateInstance()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *  DateFormat df = DateFormat.getDateInstance(DateFormat.LONG, Locale.FRANCE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * <p>You can use a DateFormat to parse also.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 *  myDate = df.parse(myString);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * </pre>
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
    97
 * <p>Use {@code getDateInstance} to get the normal date format for that country.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * There are other static factory methods available.
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
    99
 * Use {@code getTimeInstance} to get the time format for that country.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   100
 * Use {@code getDateTimeInstance} to get a date and time format. You can pass in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * different options to these factory methods to control the length of the
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   102
 * result; from {@link #SHORT} to {@link #MEDIUM} to {@link #LONG} to {@link #FULL}. The exact result depends
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * on the locale, but generally:
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   104
 * <ul><li>{@link #SHORT} is completely numeric, such as {@code 12.13.52} or {@code 3:30pm}
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   105
 * <li>{@link #MEDIUM} is longer, such as {@code Jan 12, 1952}
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   106
 * <li>{@link #LONG} is longer, such as {@code January 12, 1952} or {@code 3:30:32pm}
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   107
 * <li>{@link #FULL} is pretty completely specified, such as
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   108
 * {@code Tuesday, April 12, 1952 AD or 3:30:42pm PST}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * <p>You can also set the time zone on the format if you wish.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * If you want even more control over the format or parsing,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * (or want to give your users more control),
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   114
 * you can try casting the {@code DateFormat} you get from the factory methods
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   115
 * to a {@link SimpleDateFormat}. This will work for the majority
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   116
 * of countries; just remember to put it in a {@code try} block in case you
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * encounter an unusual one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * <p>You can also use forms of the parse and format methods with
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   120
 * {@link ParsePosition} and {@link FieldPosition} to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * allow you to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * <ul><li>progressively parse through pieces of a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * <li>align any particular field, or find out where it is for selection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * on the screen.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * <h4><a name="synchronization">Synchronization</a></h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * Date formats are not synchronized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * It is recommended to create separate format instances for each thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * If multiple threads access a format concurrently, it must be synchronized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * externally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * @see          Format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * @see          NumberFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * @see          SimpleDateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * @see          java.util.Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * @see          java.util.GregorianCalendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * @see          java.util.TimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * @author       Mark Davis, Chen-Lieh Huang, Alan Liu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
public abstract class DateFormat extends Format {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   146
     * The {@link Calendar} instance used for calculating the date-time fields
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   147
     * and the instant of time. This field is used for both formatting and
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   148
     * parsing.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   149
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   150
     * <p>Subclasses should initialize this field to a {@link Calendar}
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   151
     * appropriate for the {@link Locale} associated with this
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   152
     * <code>DateFormat</code>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    protected Calendar calendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * The number formatter that <code>DateFormat</code> uses to format numbers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * in dates and times.  Subclasses should initialize this to a number format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * appropriate for the locale associated with this <code>DateFormat</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    protected NumberFormat numberFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * Useful constant for ERA field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    public final static int ERA_FIELD = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * Useful constant for YEAR field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    public final static int YEAR_FIELD = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * Useful constant for MONTH field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    public final static int MONTH_FIELD = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Useful constant for DATE field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    public final static int DATE_FIELD = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * Useful constant for one-based HOUR_OF_DAY field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * HOUR_OF_DAY1_FIELD is used for the one-based 24-hour clock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * For example, 23:59 + 01:00 results in 24:59.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    public final static int HOUR_OF_DAY1_FIELD = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * Useful constant for zero-based HOUR_OF_DAY field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * HOUR_OF_DAY0_FIELD is used for the zero-based 24-hour clock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * For example, 23:59 + 01:00 results in 00:59.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    public final static int HOUR_OF_DAY0_FIELD = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * Useful constant for MINUTE field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public final static int MINUTE_FIELD = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * Useful constant for SECOND field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    public final static int SECOND_FIELD = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * Useful constant for MILLISECOND field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    public final static int MILLISECOND_FIELD = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * Useful constant for DAY_OF_WEEK field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    public final static int DAY_OF_WEEK_FIELD = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * Useful constant for DAY_OF_YEAR field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    public final static int DAY_OF_YEAR_FIELD = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * Useful constant for DAY_OF_WEEK_IN_MONTH field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    public final static int DAY_OF_WEEK_IN_MONTH_FIELD = 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Useful constant for WEEK_OF_YEAR field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    public final static int WEEK_OF_YEAR_FIELD = 12;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * Useful constant for WEEK_OF_MONTH field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    public final static int WEEK_OF_MONTH_FIELD = 13;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * Useful constant for AM_PM field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    public final static int AM_PM_FIELD = 14;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * Useful constant for one-based HOUR field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * HOUR1_FIELD is used for the one-based 12-hour clock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * For example, 11:30 PM + 1 hour results in 12:30 AM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    public final static int HOUR1_FIELD = 15;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * Useful constant for zero-based HOUR field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * HOUR0_FIELD is used for the zero-based 12-hour clock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * For example, 11:30 PM + 1 hour results in 00:30 AM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    public final static int HOUR0_FIELD = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * Useful constant for TIMEZONE field alignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * Used in FieldPosition of date/time formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    public final static int TIMEZONE_FIELD = 17;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    // Proclaim serial compatibility with 1.1 FCS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    private static final long serialVersionUID = 7218322306649953788L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * Overrides Format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * Formats a time object into a time string. Examples of time objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * are a time value expressed in milliseconds and a Date object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @param obj must be a Number or a Date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @param toAppendTo the string buffer for the returning time string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * @return the string buffer passed in as toAppendTo, with formatted text appended.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * @param fieldPosition keeps track of the position of the field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * within the returned string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * On input: an alignment field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * if desired. On output: the offsets of the alignment field. For
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * example, given a time text "1996.07.10 AD at 15:08:56 PDT",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * if the given fieldPosition is DateFormat.YEAR_FIELD, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * begin index and end index of fieldPosition will be set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * 0 and 4, respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * Notice that if the same time field appears
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * more than once in a pattern, the fieldPosition will be set for the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * occurrence of that time field. For instance, formatting a Date to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * the time string "1 PM PDT (Pacific Daylight Time)" using the pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * "h a z (zzzz)" and the alignment field DateFormat.TIMEZONE_FIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * the begin index and end index of fieldPosition will be set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * 5 and 8, respectively, for the first occurrence of the timezone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * pattern character 'z'.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @see java.text.Format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    public final StringBuffer format(Object obj, StringBuffer toAppendTo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                                     FieldPosition fieldPosition)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        if (obj instanceof Date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            return format( (Date)obj, toAppendTo, fieldPosition );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        else if (obj instanceof Number)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            return format( new Date(((Number)obj).longValue()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                          toAppendTo, fieldPosition );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            throw new IllegalArgumentException("Cannot format given Object as a Date");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * Formats a Date into a date/time string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * @param date a Date to be formatted into a date/time string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @param toAppendTo the string buffer for the returning date/time string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * @param fieldPosition keeps track of the position of the field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * within the returned string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * On input: an alignment field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * if desired. On output: the offsets of the alignment field. For
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * example, given a time text "1996.07.10 AD at 15:08:56 PDT",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * if the given fieldPosition is DateFormat.YEAR_FIELD, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * begin index and end index of fieldPosition will be set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * 0 and 4, respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * Notice that if the same time field appears
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * more than once in a pattern, the fieldPosition will be set for the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * occurrence of that time field. For instance, formatting a Date to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * the time string "1 PM PDT (Pacific Daylight Time)" using the pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * "h a z (zzzz)" and the alignment field DateFormat.TIMEZONE_FIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * the begin index and end index of fieldPosition will be set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * 5 and 8, respectively, for the first occurrence of the timezone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * pattern character 'z'.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @return the string buffer passed in as toAppendTo, with formatted text appended.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    public abstract StringBuffer format(Date date, StringBuffer toAppendTo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                                        FieldPosition fieldPosition);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * Formats a Date into a date/time string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @param date the time value to be formatted into a time string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @return the formatted time string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    public final String format(Date date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        return format(date, new StringBuffer(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                      DontCareFieldPosition.INSTANCE).toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * Parses text from the beginning of the given string to produce a date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * The method may not use the entire text of the given string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * See the {@link #parse(String, ParsePosition)} method for more information
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * on date parsing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * @param source A <code>String</code> whose beginning should be parsed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * @return A <code>Date</code> parsed from the string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @exception ParseException if the beginning of the specified string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     *            cannot be parsed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    public Date parse(String source) throws ParseException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        ParsePosition pos = new ParsePosition(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        Date result = parse(source, pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        if (pos.index == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            throw new ParseException("Unparseable date: \"" + source + "\"" ,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                pos.errorIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * Parse a date/time string according to the given parse position.  For
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   364
     * example, a time text {@code "07/10/96 4:5 PM, PDT"} will be parsed into a {@code Date}
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   365
     * that is equivalent to {@code Date(837039900000L)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * <p> By default, parsing is lenient: If the input is not in the form used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * by this object's format method but can still be parsed as a date, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * the parse succeeds.  Clients may insist on strict adherence to the
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   370
     * format by calling {@link #setLenient(boolean) setLenient(false)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     *
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   372
     * <p>This parsing operation uses the {@link #calendar} to produce
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   373
     * a {@code Date}. As a result, the {@code calendar}'s date-time
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   374
     * fields and the {@code TimeZone} value may have been
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   375
     * overwritten, depending on subclass implementations. Any {@code
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   376
     * TimeZone} value that has previously been set by a call to
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   377
     * {@link #setTimeZone(java.util.TimeZone) setTimeZone} may need
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   378
     * to be restored for further operations.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @param source  The date/time string to be parsed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @param pos   On input, the position at which to start parsing; on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *              output, the position at which parsing terminated, or the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *              start position if the parse failed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     *
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   386
     * @return      A {@code Date}, or {@code null} if the input could not be parsed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    public abstract Date parse(String source, ParsePosition pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * Parses text from a string to produce a <code>Date</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * The method attempts to parse text starting at the index given by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * <code>pos</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * If parsing succeeds, then the index of <code>pos</code> is updated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * to the index after the last character used (parsing does not necessarily
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * use all characters up to the end of the string), and the parsed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * date is returned. The updated <code>pos</code> can be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * indicate the starting point for the next call to this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * If an error occurs, then the index of <code>pos</code> is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * changed, the error index of <code>pos</code> is set to the index of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * the character where the error occurred, and null is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * See the {@link #parse(String, ParsePosition)} method for more information
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * on date parsing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * @param source A <code>String</code>, part of which should be parsed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @param pos A <code>ParsePosition</code> object with index and error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     *            index information as described above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * @return A <code>Date</code> parsed from the string. In case of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     *         error, returns null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * @exception NullPointerException if <code>pos</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    public Object parseObject(String source, ParsePosition pos) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        return parse(source, pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * Constant for full style pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    public static final int FULL = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * Constant for long style pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    public static final int LONG = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * Constant for medium style pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    public static final int MEDIUM = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * Constant for short style pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
    public static final int SHORT = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * Constant for default style pattern.  Its value is MEDIUM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    public static final int DEFAULT = MEDIUM;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * Gets the time formatter with the default formatting style
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * for the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @return a time formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    public final static DateFormat getTimeInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   446
        return get(DEFAULT, 0, 1, Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * Gets the time formatter with the given formatting style
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * for the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * @param style the given formatting style. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * SHORT for "h:mm a" in the US locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * @return a time formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    public final static DateFormat getTimeInstance(int style)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   458
        return get(style, 0, 1, Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * Gets the time formatter with the given formatting style
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * for the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * @param style the given formatting style. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * SHORT for "h:mm a" in the US locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * @param aLocale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * @return a time formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    public final static DateFormat getTimeInstance(int style,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
                                                 Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        return get(style, 0, 1, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * Gets the date formatter with the default formatting style
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * for the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * @return a date formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    public final static DateFormat getDateInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   482
        return get(0, DEFAULT, 2, Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * Gets the date formatter with the given formatting style
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * for the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * @param style the given formatting style. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * SHORT for "M/d/yy" in the US locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * @return a date formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    public final static DateFormat getDateInstance(int style)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   494
        return get(0, style, 2, Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * Gets the date formatter with the given formatting style
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * for the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * @param style the given formatting style. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * SHORT for "M/d/yy" in the US locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * @param aLocale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * @return a date formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    public final static DateFormat getDateInstance(int style,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
                                                 Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        return get(0, style, 2, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * Gets the date/time formatter with the default formatting style
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * for the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * @return a date/time formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    public final static DateFormat getDateTimeInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   518
        return get(DEFAULT, DEFAULT, 3, Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * Gets the date/time formatter with the given date and time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * formatting styles for the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * @param dateStyle the given date formatting style. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * SHORT for "M/d/yy" in the US locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * @param timeStyle the given time formatting style. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * SHORT for "h:mm a" in the US locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * @return a date/time formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    public final static DateFormat getDateTimeInstance(int dateStyle,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                                                       int timeStyle)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   533
        return get(timeStyle, dateStyle, 3, Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * Gets the date/time formatter with the given formatting styles
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * for the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * @param dateStyle the given date formatting style.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * @param timeStyle the given time formatting style.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * @param aLocale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * @return a date/time formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    public final static DateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        getDateTimeInstance(int dateStyle, int timeStyle, Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        return get(timeStyle, dateStyle, 3, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * Get a default date/time formatter that uses the SHORT style for both the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * date and the time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
    public final static DateFormat getInstance() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        return getDateTimeInstance(SHORT, SHORT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * Returns an array of all locales for which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * <code>get*Instance</code> methods of this class can return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * localized instances.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * The returned array represents the union of locales supported by the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * runtime and by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * {@link java.text.spi.DateFormatProvider DateFormatProvider} implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * It must contain at least a <code>Locale</code> instance equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * {@link java.util.Locale#US Locale.US}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * @return An array of locales for which localized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     *         <code>DateFormat</code> instances are available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    public static Locale[] getAvailableLocales()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        LocaleServiceProviderPool pool =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            LocaleServiceProviderPool.getPool(DateFormatProvider.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        return pool.getAvailableLocales();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * Set the calendar to be used by this date format.  Initially, the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * calendar for the specified or default locale is used.
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   581
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   582
     * <p>Any {@link java.util.TimeZone TimeZone} and {@linkplain
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   583
     * #isLenient() leniency} values that have previously been set are
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   584
     * overwritten by {@code newCalendar}'s values.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   585
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   586
     * @param newCalendar the new {@code Calendar} to be used by the date format
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    public void setCalendar(Calendar newCalendar)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
        this.calendar = newCalendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * Gets the calendar associated with this date/time formatter.
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   595
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     * @return the calendar associated with this date/time formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    public Calendar getCalendar()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        return calendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * Allows you to set the number formatter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * @param newNumberFormat the given new NumberFormat.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    public void setNumberFormat(NumberFormat newNumberFormat)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        this.numberFormat = newNumberFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * Gets the number formatter which this date/time formatter uses to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * format and parse a time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * @return the number formatter which this date/time formatter uses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    public NumberFormat getNumberFormat()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
        return numberFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    /**
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   623
     * Sets the time zone for the calendar of this {@code DateFormat} object.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   624
     * This method is equivalent to the following call.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   625
     * <blockquote><pre>
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   626
     *  getCalendar().setTimeZone(zone)
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   627
     * </pre></blockquote>
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   628
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   629
     * <p>The {@code TimeZone} set by this method is overwritten by a
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   630
     * {@link #setCalendar(java.util.Calendar) setCalendar} call.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   631
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   632
     * <p>The {@code TimeZone} set by this method may be overwritten as
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   633
     * a result of a call to the parse method.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   634
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * @param zone the given new time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    public void setTimeZone(TimeZone zone)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        calendar.setTimeZone(zone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * Gets the time zone.
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   644
     * This method is equivalent to the following call.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   645
     * <blockquote><pre>
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   646
     *  getCalendar().getTimeZone()
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   647
     * </pre></blockquote>
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   648
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * @return the time zone associated with the calendar of DateFormat.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    public TimeZone getTimeZone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        return calendar.getTimeZone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * Specify whether or not date/time parsing is to be lenient.  With
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * lenient parsing, the parser may use heuristics to interpret inputs that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * do not precisely match this object's format.  With strict parsing,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * inputs must match this object's format.
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   661
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   662
     * <p>This method is equivalent to the following call.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   663
     * <blockquote><pre>
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   664
     *  getCalendar().setLenient(lenient)
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   665
     * </pre></blockquote>
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   666
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   667
     * <p>This leniency value is overwritten by a call to {@link
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   668
     * #setCalendar(java.util.Calendar) setCalendar()}.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   669
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   670
     * @param lenient when {@code true}, parsing is lenient
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   671
     * @see java.util.Calendar#setLenient(boolean)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    public void setLenient(boolean lenient)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        calendar.setLenient(lenient);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * Tell whether date/time parsing is to be lenient.
5283
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   680
     * This method is equivalent to the following call.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   681
     * <blockquote><pre>
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   682
     *  getCalendar().isLenient()
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   683
     * </pre></blockquote>
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   684
     *
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   685
     * @return {@code true} if the {@link #calendar} is lenient;
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   686
     *         {@code false} otherwise.
c440afed922d 6609675: [Fmt-Da] DateFormat.parse() on a timezone changes its calendar's timezone
okutsu
parents: 2
diff changeset
   687
     * @see java.util.Calendar#isLenient()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    public boolean isLenient()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        return calendar.isLenient();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * Overrides hashCode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        return numberFormat.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        // just enough fields for a reasonable distribution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * Overrides equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        if (this == obj) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        if (obj == null || getClass() != obj.getClass()) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
        DateFormat other = (DateFormat) obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        return (// calendar.equivalentTo(other.calendar) // THIS API DOESN'T EXIST YET!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
                calendar.getFirstDayOfWeek() == other.calendar.getFirstDayOfWeek() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
                calendar.getMinimalDaysInFirstWeek() == other.calendar.getMinimalDaysInFirstWeek() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
                calendar.isLenient() == other.calendar.isLenient() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
                calendar.getTimeZone().equals(other.calendar.getTimeZone()) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                numberFormat.equals(other.numberFormat));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     * Overrides Cloneable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
    public Object clone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        DateFormat other = (DateFormat) super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        other.calendar = (Calendar) calendar.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        other.numberFormat = (NumberFormat) numberFormat.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        return other;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * Creates a DateFormat with the given time and/or date style in the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * @param timeStyle a value from 0 to 3 indicating the time format,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * ignored if flags is 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * @param dateStyle a value from 0 to 3 indicating the time format,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * ignored if flags is 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * @param flags either 1 for a time format, 2 for a date format,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * or 3 for a date/time format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * @param loc the locale for the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    private static DateFormat get(int timeStyle, int dateStyle,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
                                  int flags, Locale loc) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        if ((flags & 1) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
            if (timeStyle < 0 || timeStyle > 3) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                throw new IllegalArgumentException("Illegal time style " + timeStyle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
            timeStyle = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        if ((flags & 2) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            if (dateStyle < 0 || dateStyle > 3) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                throw new IllegalArgumentException("Illegal date style " + dateStyle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
            dateStyle = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
            // Check whether a provider can provide an implementation that's closer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
            // to the requested locale than what the Java runtime itself can provide.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
            LocaleServiceProviderPool pool =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
                LocaleServiceProviderPool.getPool(DateFormatProvider.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
            if (pool.hasProviders()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
                DateFormat providersInstance = pool.getLocalizedObject(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                                                    DateFormatGetter.INSTANCE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
                                                    loc,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
                                                    timeStyle,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
                                                    dateStyle,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                                                    flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                if (providersInstance != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                    return providersInstance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
            return new SimpleDateFormat(timeStyle, dateStyle, loc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        } catch (MissingResourceException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
            return new SimpleDateFormat("M/d/yy h:mm a");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     * Create a new date format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    protected DateFormat() {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     * Defines constants that are used as attribute keys in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     * <code>AttributedCharacterIterator</code> returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * from <code>DateFormat.formatToCharacterIterator</code> and as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * field identifiers in <code>FieldPosition</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * The class also provides two methods to map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * between its constants and the corresponding Calendar constants.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * @see java.util.Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
    public static class Field extends Format.Field {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        // Proclaim serial compatibility with 1.4 FCS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        private static final long serialVersionUID = 7441350119349544720L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        // table of all instances in this class, used by readResolve
12848
da701d422d2c 7117230: clean up warnings in java.text
dbhole
parents: 7668
diff changeset
   801
        private static final Map<String, Field> instanceMap = new HashMap<>(18);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        // Maps from Calendar constant (such as Calendar.ERA) to Field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
        // constant (such as Field.ERA).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
        private static final Field[] calendarToFieldMapping =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
                                             new Field[Calendar.FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
        /** Calendar field. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        private int calendarField;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
         * Returns the <code>Field</code> constant that corresponds to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
         * the <code>Calendar</code> constant <code>calendarField</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
         * If there is no direct mapping between the <code>Calendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
         * constant and a <code>Field</code>, null is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
         * @throws IllegalArgumentException if <code>calendarField</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
         *         not the value of a <code>Calendar</code> field constant.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
         * @param calendarField Calendar field constant
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
         * @return Field instance representing calendarField.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
         * @see java.util.Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        public static Field ofCalendarField(int calendarField) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            if (calendarField < 0 || calendarField >=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
                        calendarToFieldMapping.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
                throw new IllegalArgumentException("Unknown Calendar constant "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                                                   + calendarField);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
            return calendarToFieldMapping[calendarField];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
         * Creates a <code>Field</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
         * @param name the name of the <code>Field</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
         * @param calendarField the <code>Calendar</code> constant this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
         *        <code>Field</code> corresponds to; any value, even one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
         *        outside the range of legal <code>Calendar</code> values may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
         *        be used, but <code>-1</code> should be used for values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
         *        that don't correspond to legal <code>Calendar</code> values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        protected Field(String name, int calendarField) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
            super(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
            this.calendarField = calendarField;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
            if (this.getClass() == DateFormat.Field.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
                instanceMap.put(name, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
                if (calendarField >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                    // assert(calendarField < Calendar.FIELD_COUNT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                    calendarToFieldMapping[calendarField] = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
         * Returns the <code>Calendar</code> field associated with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
         * attribute. For example, if this represents the hours field of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
         * a <code>Calendar</code>, this would return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
         * <code>Calendar.HOUR</code>. If there is no corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
         * <code>Calendar</code> constant, this will return -1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
         * @return Calendar constant for this field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
         * @see java.util.Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
        public int getCalendarField() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
            return calendarField;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
         * Resolves instances being deserialized to the predefined constants.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
         * @throws InvalidObjectException if the constant could not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
         *         resolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
         * @return resolved DateFormat.Field constant
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        protected Object readResolve() throws InvalidObjectException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
            if (this.getClass() != DateFormat.Field.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                throw new InvalidObjectException("subclass didn't correctly implement readResolve");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
            Object instance = instanceMap.get(getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
            if (instance != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
                return instance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
                throw new InvalidObjectException("unknown attribute name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        // The constants
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
         * Constant identifying the era field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
        public final static Field ERA = new Field("era", Calendar.ERA);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
         * Constant identifying the year field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        public final static Field YEAR = new Field("year", Calendar.YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
         * Constant identifying the month field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
        public final static Field MONTH = new Field("month", Calendar.MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
         * Constant identifying the day of month field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        public final static Field DAY_OF_MONTH = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                            Field("day of month", Calendar.DAY_OF_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
         * Constant identifying the hour of day field, where the legal values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
         * are 1 to 24.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
        public final static Field HOUR_OF_DAY1 = new Field("hour of day 1",-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
         * Constant identifying the hour of day field, where the legal values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
         * are 0 to 23.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        public final static Field HOUR_OF_DAY0 = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
               Field("hour of day", Calendar.HOUR_OF_DAY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
         * Constant identifying the minute field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        public final static Field MINUTE =new Field("minute", Calendar.MINUTE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
         * Constant identifying the second field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
        public final static Field SECOND =new Field("second", Calendar.SECOND);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
         * Constant identifying the millisecond field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        public final static Field MILLISECOND = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
                Field("millisecond", Calendar.MILLISECOND);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
         * Constant identifying the day of week field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        public final static Field DAY_OF_WEEK = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
                Field("day of week", Calendar.DAY_OF_WEEK);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
         * Constant identifying the day of year field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        public final static Field DAY_OF_YEAR = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                Field("day of year", Calendar.DAY_OF_YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
         * Constant identifying the day of week field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        public final static Field DAY_OF_WEEK_IN_MONTH =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
                     new Field("day of week in month",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
                                            Calendar.DAY_OF_WEEK_IN_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
         * Constant identifying the week of year field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        public final static Field WEEK_OF_YEAR = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
              Field("week of year", Calendar.WEEK_OF_YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
         * Constant identifying the week of month field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        public final static Field WEEK_OF_MONTH = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
            Field("week of month", Calendar.WEEK_OF_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
         * Constant identifying the time of day indicator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
         * (e.g. "a.m." or "p.m.") field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
        public final static Field AM_PM = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                            Field("am pm", Calendar.AM_PM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
         * Constant identifying the hour field, where the legal values are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
         * 1 to 12.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        public final static Field HOUR1 = new Field("hour 1", -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
         * Constant identifying the hour field, where the legal values are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
         * 0 to 11.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
        public final static Field HOUR0 = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
                            Field("hour", Calendar.HOUR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
         * Constant identifying the time zone field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
        public final static Field TIME_ZONE = new Field("time zone", -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     * Obtains a DateFormat instance from a DateFormatProvider
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
     * implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
    private static class DateFormatGetter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
        implements LocaleServiceProviderPool.LocalizedObjectGetter<DateFormatProvider, DateFormat> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        private static final DateFormatGetter INSTANCE = new DateFormatGetter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
        public DateFormat getObject(DateFormatProvider dateFormatProvider,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
                                Locale locale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
                                String key,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
                                Object... params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
            assert params.length == 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
            int timeStyle = (Integer)params[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
            int dateStyle = (Integer)params[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
            int flags = (Integer)params[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
            switch (flags) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
            case 1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
                return dateFormatProvider.getTimeInstance(timeStyle, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            case 2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
                return dateFormatProvider.getDateInstance(dateStyle, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
            case 3:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
                return dateFormatProvider.getDateTimeInstance(dateStyle, timeStyle, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
                assert false : "should not happen";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
}