jdk/src/share/classes/java/time/format/TextStyle.java
author sherman
Wed, 15 May 2013 07:48:57 -0700
changeset 17474 8c100beabcc0
parent 16852 60207b2b4b42
child 24865 09b1d992ca72
permissions -rw-r--r--
8013730: JSR 310 DateTime API Updates III Summary: Integration of JSR310 Date/Time API update III Reviewed-by: naoto Contributed-by: scolebourne@joda.org, roger.riggs@oracle.com, masayoshi.okutsu@oracle.com, patrick.zhang@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     1
/*
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     2
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     4
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    10
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    15
 * accompanied this code).
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    16
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    20
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    23
 * questions.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    24
 */
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    25
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    26
/*
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    27
 * This file is available under and governed by the GNU General Public
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    28
 * License version 2 only, as published by the Free Software Foundation.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    29
 * However, the following notice accompanied the original version of this
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    30
 * file:
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    31
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    32
 * Copyright (c) 2008-2012, Stephen Colebourne & Michael Nascimento Santos
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    33
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    34
 * All rights reserved.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    35
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    36
 * Redistribution and use in source and binary forms, with or without
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    37
 * modification, are permitted provided that the following conditions are met:
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    38
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    39
 *  * Redistributions of source code must retain the above copyright notice,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    40
 *    this list of conditions and the following disclaimer.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    41
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    42
 *  * Redistributions in binary form must reproduce the above copyright notice,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    43
 *    this list of conditions and the following disclaimer in the documentation
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    44
 *    and/or other materials provided with the distribution.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    45
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    46
 *  * Neither the name of JSR-310 nor the names of its contributors
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    47
 *    may be used to endorse or promote products derived from this software
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    48
 *    without specific prior written permission.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    49
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    50
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    51
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    52
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    53
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    54
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    55
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    56
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    57
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    58
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    59
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    60
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    61
 */
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    62
package java.time.format;
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    63
16852
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    64
import java.util.Calendar;
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    65
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    66
/**
16852
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    67
 * Enumeration of the style of text formatting and parsing.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    68
 * <p>
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    69
 * Text styles define three sizes for the formatted text - 'full', 'short' and 'narrow'.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    70
 * Each of these three sizes is available in both 'standard' and 'stand-alone' variations.
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    71
 * <p>
16852
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    72
 * The difference between the three sizes is obvious in most languages.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    73
 * For example, in English the 'full' month is 'January', the 'short' month is 'Jan'
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    74
 * and the 'narrow' month is 'J'. Note that the narrow size is often not unique.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    75
 * For example, 'January', 'June' and 'July' all have the 'narrow' text 'J'.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    76
 * <p>
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    77
 * The difference between the 'standard' and 'stand-alone' forms is trickier to describe
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    78
 * as there is no difference in English. However, in other languages there is a difference
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    79
 * in the word used when the text is used alone, as opposed to in a complete date.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    80
 * For example, the word used for a month when used alone in a date picker is different
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    81
 * to the word used for month in association with a day and year in a date.
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    82
 *
17474
8c100beabcc0 8013730: JSR 310 DateTime API Updates III
sherman
parents: 16852
diff changeset
    83
 * @implSpec
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    84
 * This is immutable and thread-safe enum.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    85
 */
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    86
public enum TextStyle {
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    87
    // ordered from large to small
16852
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    88
    // ordered so that bit 0 of the ordinal indicates stand-alone.
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    89
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    90
    /**
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    91
     * Full text, typically the full description.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    92
     * For example, day-of-week Monday might output "Monday".
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    93
     */
16852
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    94
    FULL(Calendar.LONG_FORMAT, 0),
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    95
    /**
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    96
     * Full text for stand-alone use, typically the full description.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    97
     * For example, day-of-week Monday might output "Monday".
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    98
     */
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
    99
    FULL_STANDALONE(Calendar.LONG_STANDALONE, 0),
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   100
    /**
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   101
     * Short text, typically an abbreviation.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   102
     * For example, day-of-week Monday might output "Mon".
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   103
     */
16852
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   104
    SHORT(Calendar.SHORT_FORMAT, 1),
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   105
    /**
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   106
     * Short text for stand-alone use, typically an abbreviation.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   107
     * For example, day-of-week Monday might output "Mon".
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   108
     */
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   109
    SHORT_STANDALONE(Calendar.SHORT_STANDALONE, 1),
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   110
    /**
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   111
     * Narrow text, typically a single letter.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   112
     * For example, day-of-week Monday might output "M".
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   113
     */
16852
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   114
    NARROW(Calendar.NARROW_FORMAT, 1),
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   115
    /**
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   116
     * Narrow text for stand-alone use, typically a single letter.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   117
     * For example, day-of-week Monday might output "M".
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   118
     */
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   119
    NARROW_STANDALONE(Calendar.NARROW_STANDALONE, 1);
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   120
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   121
    private final int calendarStyle;
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   122
    private final int zoneNameStyleIndex;
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   123
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   124
    private TextStyle(int calendarStyle, int zoneNameStyleIndex) {
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   125
        this.calendarStyle = calendarStyle;
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   126
        this.zoneNameStyleIndex = zoneNameStyleIndex;
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   127
    }
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   128
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   129
    /**
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   130
     * Returns true if the Style is a stand-alone style.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   131
     * @return true if the style is a stand-alone style.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   132
     */
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   133
    public boolean isStandalone() {
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   134
        return (ordinal() & 1) == 1;
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   135
    }
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   136
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   137
    /**
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   138
     * Returns the stand-alone style with the same size.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   139
     * @return the stand-alone style with the same size
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   140
     */
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   141
    public TextStyle asStandalone() {
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   142
        return TextStyle.values()[ordinal()  | 1];
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   143
    }
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   144
16852
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   145
    /**
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   146
     * Returns the normal style with the same size.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   147
     *
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   148
     * @return the normal style with the same size
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   149
     */
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   150
    public TextStyle asNormal() {
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   151
        return TextStyle.values()[ordinal() & ~1];
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   152
    }
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   153
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   154
    /**
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   155
     * Returns the {@code Calendar} style corresponding to this {@code TextStyle}.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   156
     *
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   157
     * @return the corresponding {@code Calendar} style
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   158
     */
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   159
    int toCalendarStyle() {
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   160
        return calendarStyle;
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   161
    }
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   162
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   163
    /**
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   164
     * Returns the relative index value to an element of the {@link
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   165
     * java.text.DateFormatSymbols#getZoneStrings() DateFormatSymbols.getZoneStrings()}
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   166
     * value, 0 for long names and 1 for short names (abbreviations). Note that these values
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   167
     * do <em>not</em> correspond to the {@link java.util.TimeZone#LONG} and {@link
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   168
     * java.util.TimeZone#SHORT} values.
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   169
     *
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   170
     * @return the relative index value to time zone names array
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   171
     */
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   172
    int zoneNameStyleIndex() {
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   173
        return zoneNameStyleIndex;
60207b2b4b42 8011172: JSR 310 DateTime API Updates II
sherman
parents: 15289
diff changeset
   174
    }
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
   175
}