jdk/src/share/classes/java/lang/Character.java
author martin
Wed, 30 Jun 2010 16:11:32 -0700
changeset 5991 288afdbbca28
parent 5990 19cae21ed5e6
child 6498 cc2bc2a2194a
permissions -rw-r--r--
6933322: Add methods highSurrogate(), lowSurrogate() to class Character Summary: Add public variants of methods Surrogate.high, Surrogate.low Reviewed-by: okutsu, sherman Contributed-by: Ulf Zibis <ulf.zibis@gmx.de>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3943
diff changeset
     2
 * Copyright (c) 2002, 2009, 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: 3943
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: 3943
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: 3943
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3943
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3943
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang;
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
    27
5610
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
    28
import java.util.Arrays;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Locale;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * The <code>Character</code> class wraps a value of the primitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * type <code>char</code> in an object. An object of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * <code>Character</code> contains a single field whose type is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <code>char</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * In addition, this class provides several methods for determining
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * a character's category (lowercase letter, digit, etc.) and for converting
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * characters from uppercase to lowercase and vice versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p>
3501
a3168c7b4011 6866243: Javadoc for java.lang.Character still refers to Unicode 4 instead of 5
peytoia
parents: 3224
diff changeset
    43
 * Character information is based on the Unicode Standard, version 5.1.0.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * The methods and data of class <code>Character</code> are defined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * the information in the <i>UnicodeData</i> file that is part of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Unicode Character Database maintained by the Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * Consortium. This file specifies various properties including name
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * and general category for every defined Unicode code point or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * character range.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * The file and its description are available from the Unicode Consortium at:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <li><a href="http://www.unicode.org">http://www.unicode.org</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <h4><a name="unicode">Unicode Character Representations</a></h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <p>The <code>char</code> data type (and therefore the value that a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * <code>Character</code> object encapsulates) are based on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * original Unicode specification, which defined characters as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * fixed-width 16-bit entities. The Unicode standard has since been
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * changed to allow for characters whose representation requires more
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * than 16 bits.  The range of legal <em>code point</em>s is now
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * U+0000 to U+10FFFF, known as <em>Unicode scalar value</em>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * (Refer to the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * href="http://www.unicode.org/reports/tr27/#notation"><i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * definition</i></a> of the U+<i>n</i> notation in the Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * standard.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    71
 * <p><a name="BMP">The set of characters from U+0000 to U+FFFF is
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    72
 * sometimes referred to as the <em>Basic Multilingual Plane (BMP)</em>.
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    73
 * <a name="supplementary">Characters</a> whose code points are greater
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * than U+FFFF are called <em>supplementary character</em>s.  The Java
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    75
 * platform uses the UTF-16 representation in <code>char</code> arrays and
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    76
 * in the <code>String</code> and <code>StringBuffer</code> classes. In
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    77
 * this representation, supplementary characters are represented as a pair
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    78
 * of <code>char</code> values, the first from the <em>high-surrogates</em>
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    79
 * range, (&#92;uD800-&#92;uDBFF), the second from the
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
    80
 * <em>low-surrogates</em> range (&#92;uDC00-&#92;uDFFF).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * <p>A <code>char</code> value, therefore, represents Basic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * Multilingual Plane (BMP) code points, including the surrogate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * code points, or code units of the UTF-16 encoding. An
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * <code>int</code> value represents all Unicode code points,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * including supplementary code points. The lower (least significant)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * 21 bits of <code>int</code> are used to represent Unicode code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * points and the upper (most significant) 11 bits must be zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * Unless otherwise specified, the behavior with respect to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * supplementary characters and surrogate <code>char</code> values is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * as follows:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <li>The methods that only accept a <code>char</code> value cannot support
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * supplementary characters. They treat <code>char</code> values from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * surrogate ranges as undefined characters. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * <code>Character.isLetter('&#92;uD840')</code> returns <code>false</code>, even though
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * this specific value if followed by any low-surrogate value in a string
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * would represent a letter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * <li>The methods that accept an <code>int</code> value support all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * Unicode characters, including supplementary characters. For
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * example, <code>Character.isLetter(0x2F81A)</code> returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * <code>true</code> because the code point value represents a letter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * (a CJK ideograph).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * <p>In the Java SE API documentation, <em>Unicode code point</em> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * used for character values in the range between U+0000 and U+10FFFF,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * and <em>Unicode code unit</em> is used for 16-bit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * <code>char</code> values that are code units of the <em>UTF-16</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * encoding. For more information on Unicode terminology, refer to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * <a href="http://www.unicode.org/glossary/">Unicode Glossary</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * @author  Lee Boynton
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * @author  Guy Steele
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * @author  Akira Tanaka
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
   118
 * @author  Martin Buchholz
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
   119
 * @author  Ulf Zibis
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * @since   1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
public final
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   123
class Character implements java.io.Serializable, Comparable<Character> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * The minimum radix available for conversion to and from strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * The constant value of this field is the smallest value permitted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * for the radix argument in radix-conversion methods such as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * <code>digit</code> method, the <code>forDigit</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * method, and the <code>toString</code> method of class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * <code>Integer</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   132
     * @see     Character#digit(char, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   133
     * @see     Character#forDigit(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   134
     * @see     Integer#toString(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   135
     * @see     Integer#valueOf(String)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    public static final int MIN_RADIX = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * The maximum radix available for conversion to and from strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * The constant value of this field is the largest value permitted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * for the radix argument in radix-conversion methods such as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * <code>digit</code> method, the <code>forDigit</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * method, and the <code>toString</code> method of class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * <code>Integer</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     *
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   147
     * @see     Character#digit(char, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   148
     * @see     Character#forDigit(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   149
     * @see     Integer#toString(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   150
     * @see     Integer#valueOf(String)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    public static final int MAX_RADIX = 36;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * The constant value of this field is the smallest value of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * <code>char</code>, <code>'&#92;u0000'</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * @since   1.0.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     */
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   160
    public static final char MIN_VALUE = '\u0000';
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * The constant value of this field is the largest value of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * <code>char</code>, <code>'&#92;uFFFF'</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @since   1.0.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   168
    public static final char MAX_VALUE = '\uFFFF';
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * The <code>Class</code> instance representing the primitive type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * <code>char</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     */
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   176
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    public static final Class<Character> TYPE = Class.getPrimitiveClass("char");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   179
    /*
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   180
     * Normative general types
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   181
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   182
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   183
    /*
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   184
     * General character types
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   185
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   186
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   187
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   188
     * General category "Cn" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   189
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   190
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   191
    public static final byte UNASSIGNED = 0;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   192
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   193
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   194
     * General category "Lu" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   195
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   196
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   197
    public static final byte UPPERCASE_LETTER = 1;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   198
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   199
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   200
     * General category "Ll" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   201
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   202
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   203
    public static final byte LOWERCASE_LETTER = 2;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   204
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   205
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   206
     * General category "Lt" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   207
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   208
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   209
    public static final byte TITLECASE_LETTER = 3;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   210
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   211
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   212
     * General category "Lm" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   213
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   214
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   215
    public static final byte MODIFIER_LETTER = 4;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   216
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   217
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   218
     * General category "Lo" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   219
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   220
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   221
    public static final byte OTHER_LETTER = 5;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   222
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   223
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   224
     * General category "Mn" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   225
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   226
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   227
    public static final byte NON_SPACING_MARK = 6;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   228
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   229
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   230
     * General category "Me" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   231
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   232
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   233
    public static final byte ENCLOSING_MARK = 7;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   234
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   235
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   236
     * General category "Mc" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   237
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   238
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   239
    public static final byte COMBINING_SPACING_MARK = 8;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   240
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   241
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   242
     * General category "Nd" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   243
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   244
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   245
    public static final byte DECIMAL_DIGIT_NUMBER        = 9;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   246
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   247
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   248
     * General category "Nl" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   249
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   250
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   251
    public static final byte LETTER_NUMBER = 10;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   252
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   253
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   254
     * General category "No" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   255
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   256
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   257
    public static final byte OTHER_NUMBER = 11;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   258
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   259
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   260
     * General category "Zs" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   261
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   262
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   263
    public static final byte SPACE_SEPARATOR = 12;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   264
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   265
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   266
     * General category "Zl" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   267
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   268
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   269
    public static final byte LINE_SEPARATOR = 13;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   270
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   271
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   272
     * General category "Zp" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   273
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   274
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   275
    public static final byte PARAGRAPH_SEPARATOR = 14;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   276
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   277
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   278
     * General category "Cc" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   279
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   280
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   281
    public static final byte CONTROL = 15;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   282
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   283
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   284
     * General category "Cf" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   285
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   286
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   287
    public static final byte FORMAT = 16;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   288
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   289
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   290
     * General category "Co" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   291
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   292
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   293
    public static final byte PRIVATE_USE = 18;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   294
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   295
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   296
     * General category "Cs" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   297
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   298
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   299
    public static final byte SURROGATE = 19;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   300
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   301
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   302
     * General category "Pd" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   303
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   304
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   305
    public static final byte DASH_PUNCTUATION = 20;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   306
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   307
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   308
     * General category "Ps" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   309
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   310
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   311
    public static final byte START_PUNCTUATION = 21;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   312
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   313
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   314
     * General category "Pe" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   315
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   316
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   317
    public static final byte END_PUNCTUATION = 22;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   318
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   319
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   320
     * General category "Pc" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   321
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   322
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   323
    public static final byte CONNECTOR_PUNCTUATION = 23;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   324
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   325
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   326
     * General category "Po" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   327
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   328
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   329
    public static final byte OTHER_PUNCTUATION = 24;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   330
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   331
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   332
     * General category "Sm" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   333
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   334
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   335
    public static final byte MATH_SYMBOL = 25;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   336
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   337
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   338
     * General category "Sc" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   339
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   340
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   341
    public static final byte CURRENCY_SYMBOL = 26;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   342
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   343
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   344
     * General category "Sk" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   345
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   346
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   347
    public static final byte MODIFIER_SYMBOL = 27;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   348
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   349
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   350
     * General category "So" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   351
     * @since   1.1
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   352
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   353
    public static final byte OTHER_SYMBOL = 28;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   354
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   355
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   356
     * General category "Pi" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   357
     * @since   1.4
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   358
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   359
    public static final byte INITIAL_QUOTE_PUNCTUATION = 29;
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   360
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   361
    /**
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   362
     * General category "Pf" in the Unicode specification.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   363
     * @since   1.4
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   364
     */
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   365
    public static final byte FINAL_QUOTE_PUNCTUATION = 30;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * Error flag. Use int (code point) to avoid confusion with U+FFFF.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     */
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   370
    static final int ERROR = 0xFFFFFFFF;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * Undefined bidirectional character type. Undefined <code>char</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * values have undefined directionality in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     */
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   378
    public static final byte DIRECTIONALITY_UNDEFINED = -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * Strong bidirectional character type "L" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    public static final byte DIRECTIONALITY_LEFT_TO_RIGHT = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * Strong bidirectional character type "R" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    public static final byte DIRECTIONALITY_RIGHT_TO_LEFT = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    * Strong bidirectional character type "AL" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * Weak bidirectional character type "EN" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    public static final byte DIRECTIONALITY_EUROPEAN_NUMBER = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * Weak bidirectional character type "ES" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    public static final byte DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * Weak bidirectional character type "ET" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    public static final byte DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * Weak bidirectional character type "AN" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    public static final byte DIRECTIONALITY_ARABIC_NUMBER = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * Weak bidirectional character type "CS" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    public static final byte DIRECTIONALITY_COMMON_NUMBER_SEPARATOR = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * Weak bidirectional character type "NSM" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    public static final byte DIRECTIONALITY_NONSPACING_MARK = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * Weak bidirectional character type "BN" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    public static final byte DIRECTIONALITY_BOUNDARY_NEUTRAL = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * Neutral bidirectional character type "B" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    public static final byte DIRECTIONALITY_PARAGRAPH_SEPARATOR = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * Neutral bidirectional character type "S" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    public static final byte DIRECTIONALITY_SEGMENT_SEPARATOR = 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * Neutral bidirectional character type "WS" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    public static final byte DIRECTIONALITY_WHITESPACE = 12;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * Neutral bidirectional character type "ON" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    public static final byte DIRECTIONALITY_OTHER_NEUTRALS = 13;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * Strong bidirectional character type "LRE" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING = 14;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * Strong bidirectional character type "LRO" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE = 15;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * Strong bidirectional character type "RLE" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * Strong bidirectional character type "RLO" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE = 17;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * Weak bidirectional character type "PDF" in the Unicode specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    public static final byte DIRECTIONALITY_POP_DIRECTIONAL_FORMAT = 18;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   495
     * The minimum value of a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   496
     * <a href="http://www.unicode.org/glossary/#high_surrogate_code_unit">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   497
     * Unicode high-surrogate code unit</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   498
     * in the UTF-16 encoding, constant <code>'&#92;uD800'</code>.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   499
     * A high-surrogate is also known as a <i>leading-surrogate</i>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    public static final char MIN_HIGH_SURROGATE = '\uD800';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   506
     * The maximum value of a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   507
     * <a href="http://www.unicode.org/glossary/#high_surrogate_code_unit">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   508
     * Unicode high-surrogate code unit</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   509
     * in the UTF-16 encoding, constant <code>'&#92;uDBFF'</code>.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   510
     * A high-surrogate is also known as a <i>leading-surrogate</i>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    public static final char MAX_HIGH_SURROGATE = '\uDBFF';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   517
     * The minimum value of a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   518
     * <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   519
     * Unicode low-surrogate code unit</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   520
     * in the UTF-16 encoding, constant <code>'&#92;uDC00'</code>.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   521
     * A low-surrogate is also known as a <i>trailing-surrogate</i>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
    public static final char MIN_LOW_SURROGATE  = '\uDC00';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   528
     * The maximum value of a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   529
     * <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   530
     * Unicode low-surrogate code unit</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   531
     * in the UTF-16 encoding, constant <code>'&#92;uDFFF'</code>.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   532
     * A low-surrogate is also known as a <i>trailing-surrogate</i>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    public static final char MAX_LOW_SURROGATE  = '\uDFFF';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   539
     * The minimum value of a Unicode surrogate code unit in the
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   540
     * UTF-16 encoding, constant <code>'&#92;uD800'</code>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    public static final char MIN_SURROGATE = MIN_HIGH_SURROGATE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   547
     * The maximum value of a Unicode surrogate code unit in the
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   548
     * UTF-16 encoding, constant <code>'&#92;uDFFF'</code>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    public static final char MAX_SURROGATE = MAX_LOW_SURROGATE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   555
     * The minimum value of a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   556
     * <a href="http://www.unicode.org/glossary/#supplementary_code_point">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   557
     * Unicode supplementary code point</a>, constant {@code U+10000}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    public static final int MIN_SUPPLEMENTARY_CODE_POINT = 0x010000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   564
     * The minimum value of a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   565
     * <a href="http://www.unicode.org/glossary/#code_point">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   566
     * Unicode code point</a>, constant {@code U+0000}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    public static final int MIN_CODE_POINT = 0x000000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   573
     * The maximum value of a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   574
     * <a href="http://www.unicode.org/glossary/#code_point">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   575
     * Unicode code point</a>, constant {@code U+10FFFF}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     */
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
   579
    public static final int MAX_CODE_POINT = 0X10FFFF;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * Instances of this class represent particular subsets of the Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * character set.  The only family of subsets defined in the
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   585
     * <code>Character</code> class is {@link Character.UnicodeBlock}.
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   586
     * Other portions of the Java API may define other subsets for their
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   587
     * own purposes.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
    public static class Subset  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        private String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
         * Constructs a new <code>Subset</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
         * @exception NullPointerException if name is <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
         * @param  name  The name of this subset
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   600
         * @exception NullPointerException if name is <code>null</code>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        protected Subset(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            if (name == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                throw new NullPointerException("name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
            this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
         * Compares two <code>Subset</code> objects for equality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
         * This method returns <code>true</code> if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
         * <code>this</code> and the argument refer to the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
         * object; since this method is <code>final</code>, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
         * guarantee holds for all subclasses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        public final boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            return (this == obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
         * Returns the standard hash code as defined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
         * <code>{@link Object#hashCode}</code> method.  This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
         * is <code>final</code> in order to ensure that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
         * <code>equals</code> and <code>hashCode</code> methods will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
         * be consistent in all subclasses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        public final int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
            return super.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
         * Returns the name of this subset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        public final String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
            return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   639
    // See http://www.unicode.org/Public/UNIDATA/Blocks.txt
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   640
    // for the latest specification of Unicode Blocks.
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   641
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * A family of character subsets representing the character blocks in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * Unicode specification. Character blocks generally define characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * used for a specific script or purpose. A character is contained by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * at most one Unicode block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    public static final class UnicodeBlock extends Subset {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   652
        private static Map<String, UnicodeBlock> map
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
   653
            = new HashMap<String, UnicodeBlock>(256);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        /**
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   656
         * Creates a UnicodeBlock with the given identifier name.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
         * This name must be the same as the block identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        private UnicodeBlock(String idName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            super(idName);
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   661
            map.put(idName, this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        /**
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   665
         * Creates a UnicodeBlock with the given identifier name and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
         * alias name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        private UnicodeBlock(String idName, String alias) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
            this(idName);
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   670
            map.put(alias, this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        /**
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   674
         * Creates a UnicodeBlock with the given identifier name and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
         * alias names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   677
        private UnicodeBlock(String idName, String... aliases) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
            this(idName);
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   679
            for (String alias : aliases)
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   680
                map.put(alias, this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
         * Constant for the "Basic Latin" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        public static final UnicodeBlock  BASIC_LATIN =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   688
            new UnicodeBlock("BASIC_LATIN",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   689
                             "BASIC LATIN",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   690
                             "BASICLATIN");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
         * Constant for the "Latin-1 Supplement" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        public static final UnicodeBlock LATIN_1_SUPPLEMENT =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   697
            new UnicodeBlock("LATIN_1_SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   698
                             "LATIN-1 SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   699
                             "LATIN-1SUPPLEMENT");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
         * Constant for the "Latin Extended-A" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        public static final UnicodeBlock LATIN_EXTENDED_A =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   706
            new UnicodeBlock("LATIN_EXTENDED_A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   707
                             "LATIN EXTENDED-A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   708
                             "LATINEXTENDED-A");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
         * Constant for the "Latin Extended-B" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        public static final UnicodeBlock LATIN_EXTENDED_B =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   715
            new UnicodeBlock("LATIN_EXTENDED_B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   716
                             "LATIN EXTENDED-B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   717
                             "LATINEXTENDED-B");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
         * Constant for the "IPA Extensions" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        public static final UnicodeBlock IPA_EXTENSIONS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   724
            new UnicodeBlock("IPA_EXTENSIONS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   725
                             "IPA EXTENSIONS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   726
                             "IPAEXTENSIONS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
         * Constant for the "Spacing Modifier Letters" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
        public static final UnicodeBlock SPACING_MODIFIER_LETTERS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   733
            new UnicodeBlock("SPACING_MODIFIER_LETTERS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   734
                             "SPACING MODIFIER LETTERS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   735
                             "SPACINGMODIFIERLETTERS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
         * Constant for the "Combining Diacritical Marks" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        public static final UnicodeBlock COMBINING_DIACRITICAL_MARKS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   742
            new UnicodeBlock("COMBINING_DIACRITICAL_MARKS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   743
                             "COMBINING DIACRITICAL MARKS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   744
                             "COMBININGDIACRITICALMARKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
         * Constant for the "Greek and Coptic" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
         * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
         * This block was previously known as the "Greek" block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   753
        public static final UnicodeBlock GREEK =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   754
            new UnicodeBlock("GREEK",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   755
                             "GREEK AND COPTIC",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   756
                             "GREEKANDCOPTIC");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
         * Constant for the "Cyrillic" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        public static final UnicodeBlock CYRILLIC =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
            new UnicodeBlock("CYRILLIC");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
         * Constant for the "Armenian" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        public static final UnicodeBlock ARMENIAN =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
            new UnicodeBlock("ARMENIAN");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
         * Constant for the "Hebrew" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        public static final UnicodeBlock HEBREW =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
            new UnicodeBlock("HEBREW");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
         * Constant for the "Arabic" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        public static final UnicodeBlock ARABIC =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            new UnicodeBlock("ARABIC");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
         * Constant for the "Devanagari" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        public static final UnicodeBlock DEVANAGARI =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
            new UnicodeBlock("DEVANAGARI");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
         * Constant for the "Bengali" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        public static final UnicodeBlock BENGALI =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
            new UnicodeBlock("BENGALI");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
         * Constant for the "Gurmukhi" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
        public static final UnicodeBlock GURMUKHI =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            new UnicodeBlock("GURMUKHI");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
         * Constant for the "Gujarati" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        public static final UnicodeBlock GUJARATI =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
            new UnicodeBlock("GUJARATI");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
         * Constant for the "Oriya" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        public static final UnicodeBlock ORIYA =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            new UnicodeBlock("ORIYA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
         * Constant for the "Tamil" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        public static final UnicodeBlock TAMIL =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            new UnicodeBlock("TAMIL");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
         * Constant for the "Telugu" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        public static final UnicodeBlock TELUGU =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
            new UnicodeBlock("TELUGU");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
         * Constant for the "Kannada" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        public static final UnicodeBlock KANNADA =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
            new UnicodeBlock("KANNADA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
         * Constant for the "Malayalam" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
        public static final UnicodeBlock MALAYALAM =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
            new UnicodeBlock("MALAYALAM");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
         * Constant for the "Thai" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        public static final UnicodeBlock THAI =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
            new UnicodeBlock("THAI");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
         * Constant for the "Lao" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
        public static final UnicodeBlock LAO =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
            new UnicodeBlock("LAO");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
         * Constant for the "Tibetan" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        public static final UnicodeBlock TIBETAN =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
            new UnicodeBlock("TIBETAN");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
         * Constant for the "Georgian" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        public static final UnicodeBlock GEORGIAN =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
            new UnicodeBlock("GEORGIAN");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
         * Constant for the "Hangul Jamo" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        public static final UnicodeBlock HANGUL_JAMO =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   882
            new UnicodeBlock("HANGUL_JAMO",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   883
                             "HANGUL JAMO",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   884
                             "HANGULJAMO");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
         * Constant for the "Latin Extended Additional" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
        public static final UnicodeBlock LATIN_EXTENDED_ADDITIONAL =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   891
            new UnicodeBlock("LATIN_EXTENDED_ADDITIONAL",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   892
                             "LATIN EXTENDED ADDITIONAL",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   893
                             "LATINEXTENDEDADDITIONAL");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
         * Constant for the "Greek Extended" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        public static final UnicodeBlock GREEK_EXTENDED =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   900
            new UnicodeBlock("GREEK_EXTENDED",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   901
                             "GREEK EXTENDED",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   902
                             "GREEKEXTENDED");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
         * Constant for the "General Punctuation" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        public static final UnicodeBlock GENERAL_PUNCTUATION =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   909
            new UnicodeBlock("GENERAL_PUNCTUATION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   910
                             "GENERAL PUNCTUATION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   911
                             "GENERALPUNCTUATION");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
         * Constant for the "Superscripts and Subscripts" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
        public static final UnicodeBlock SUPERSCRIPTS_AND_SUBSCRIPTS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   918
            new UnicodeBlock("SUPERSCRIPTS_AND_SUBSCRIPTS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   919
                             "SUPERSCRIPTS AND SUBSCRIPTS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   920
                             "SUPERSCRIPTSANDSUBSCRIPTS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
         * Constant for the "Currency Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
        public static final UnicodeBlock CURRENCY_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   927
            new UnicodeBlock("CURRENCY_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   928
                             "CURRENCY SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   929
                             "CURRENCYSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
         * Constant for the "Combining Diacritical Marks for Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
         * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
         * This block was previously known as "Combining Marks for Symbols".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
        public static final UnicodeBlock COMBINING_MARKS_FOR_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   938
            new UnicodeBlock("COMBINING_MARKS_FOR_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   939
                             "COMBINING DIACRITICAL MARKS FOR SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   940
                             "COMBININGDIACRITICALMARKSFORSYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   941
                             "COMBINING MARKS FOR SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   942
                             "COMBININGMARKSFORSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
         * Constant for the "Letterlike Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        public static final UnicodeBlock LETTERLIKE_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   949
            new UnicodeBlock("LETTERLIKE_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   950
                             "LETTERLIKE SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   951
                             "LETTERLIKESYMBOLS");
2
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 for the "Number Forms" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
        public static final UnicodeBlock NUMBER_FORMS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   958
            new UnicodeBlock("NUMBER_FORMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   959
                             "NUMBER FORMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   960
                             "NUMBERFORMS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
         * Constant for the "Arrows" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        public static final UnicodeBlock ARROWS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
            new UnicodeBlock("ARROWS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
         * Constant for the "Mathematical Operators" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        public static final UnicodeBlock MATHEMATICAL_OPERATORS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   974
            new UnicodeBlock("MATHEMATICAL_OPERATORS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   975
                             "MATHEMATICAL OPERATORS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   976
                             "MATHEMATICALOPERATORS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
         * Constant for the "Miscellaneous Technical" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        public static final UnicodeBlock MISCELLANEOUS_TECHNICAL =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   983
            new UnicodeBlock("MISCELLANEOUS_TECHNICAL",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   984
                             "MISCELLANEOUS TECHNICAL",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   985
                             "MISCELLANEOUSTECHNICAL");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
         * Constant for the "Control Pictures" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        public static final UnicodeBlock CONTROL_PICTURES =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   992
            new UnicodeBlock("CONTROL_PICTURES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   993
                             "CONTROL PICTURES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
   994
                             "CONTROLPICTURES");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
         * Constant for the "Optical Character Recognition" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
        public static final UnicodeBlock OPTICAL_CHARACTER_RECOGNITION =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1001
            new UnicodeBlock("OPTICAL_CHARACTER_RECOGNITION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1002
                             "OPTICAL CHARACTER RECOGNITION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1003
                             "OPTICALCHARACTERRECOGNITION");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
         * Constant for the "Enclosed Alphanumerics" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        public static final UnicodeBlock ENCLOSED_ALPHANUMERICS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1010
            new UnicodeBlock("ENCLOSED_ALPHANUMERICS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1011
                             "ENCLOSED ALPHANUMERICS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1012
                             "ENCLOSEDALPHANUMERICS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
         * Constant for the "Box Drawing" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        public static final UnicodeBlock BOX_DRAWING =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1019
            new UnicodeBlock("BOX_DRAWING",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1020
                             "BOX DRAWING",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1021
                             "BOXDRAWING");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
         * Constant for the "Block Elements" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        public static final UnicodeBlock BLOCK_ELEMENTS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1028
            new UnicodeBlock("BLOCK_ELEMENTS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1029
                             "BLOCK ELEMENTS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1030
                             "BLOCKELEMENTS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
         * Constant for the "Geometric Shapes" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
        public static final UnicodeBlock GEOMETRIC_SHAPES =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1037
            new UnicodeBlock("GEOMETRIC_SHAPES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1038
                             "GEOMETRIC SHAPES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1039
                             "GEOMETRICSHAPES");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
         * Constant for the "Miscellaneous Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
        public static final UnicodeBlock MISCELLANEOUS_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1046
            new UnicodeBlock("MISCELLANEOUS_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1047
                             "MISCELLANEOUS SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1048
                             "MISCELLANEOUSSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
         * Constant for the "Dingbats" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
        public static final UnicodeBlock DINGBATS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
            new UnicodeBlock("DINGBATS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
         * Constant for the "CJK Symbols and Punctuation" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
        public static final UnicodeBlock CJK_SYMBOLS_AND_PUNCTUATION =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1062
            new UnicodeBlock("CJK_SYMBOLS_AND_PUNCTUATION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1063
                             "CJK SYMBOLS AND PUNCTUATION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1064
                             "CJKSYMBOLSANDPUNCTUATION");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
         * Constant for the "Hiragana" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
        public static final UnicodeBlock HIRAGANA =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
            new UnicodeBlock("HIRAGANA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
         * Constant for the "Katakana" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        public static final UnicodeBlock KATAKANA =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
            new UnicodeBlock("KATAKANA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
         * Constant for the "Bopomofo" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        public static final UnicodeBlock BOPOMOFO =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
            new UnicodeBlock("BOPOMOFO");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
         * Constant for the "Hangul Compatibility Jamo" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
        public static final UnicodeBlock HANGUL_COMPATIBILITY_JAMO =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1092
            new UnicodeBlock("HANGUL_COMPATIBILITY_JAMO",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1093
                             "HANGUL COMPATIBILITY JAMO",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1094
                             "HANGULCOMPATIBILITYJAMO");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
         * Constant for the "Kanbun" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
        public static final UnicodeBlock KANBUN =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
            new UnicodeBlock("KANBUN");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
         * Constant for the "Enclosed CJK Letters and Months" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
        public static final UnicodeBlock ENCLOSED_CJK_LETTERS_AND_MONTHS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1108
            new UnicodeBlock("ENCLOSED_CJK_LETTERS_AND_MONTHS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1109
                             "ENCLOSED CJK LETTERS AND MONTHS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1110
                             "ENCLOSEDCJKLETTERSANDMONTHS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
         * Constant for the "CJK Compatibility" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
        public static final UnicodeBlock CJK_COMPATIBILITY =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1117
            new UnicodeBlock("CJK_COMPATIBILITY",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1118
                             "CJK COMPATIBILITY",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1119
                             "CJKCOMPATIBILITY");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
         * Constant for the "CJK Unified Ideographs" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
        public static final UnicodeBlock CJK_UNIFIED_IDEOGRAPHS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1126
            new UnicodeBlock("CJK_UNIFIED_IDEOGRAPHS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1127
                             "CJK UNIFIED IDEOGRAPHS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1128
                             "CJKUNIFIEDIDEOGRAPHS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
         * Constant for the "Hangul Syllables" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
        public static final UnicodeBlock HANGUL_SYLLABLES =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1135
            new UnicodeBlock("HANGUL_SYLLABLES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1136
                             "HANGUL SYLLABLES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1137
                             "HANGULSYLLABLES");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
         * Constant for the "Private Use Area" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
        public static final UnicodeBlock PRIVATE_USE_AREA =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1144
            new UnicodeBlock("PRIVATE_USE_AREA",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1145
                             "PRIVATE USE AREA",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1146
                             "PRIVATEUSEAREA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
         * Constant for the "CJK Compatibility Ideographs" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
        public static final UnicodeBlock CJK_COMPATIBILITY_IDEOGRAPHS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            new UnicodeBlock("CJK_COMPATIBILITY_IDEOGRAPHS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1154
                             "CJK COMPATIBILITY IDEOGRAPHS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1155
                             "CJKCOMPATIBILITYIDEOGRAPHS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
         * Constant for the "Alphabetic Presentation Forms" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
        public static final UnicodeBlock ALPHABETIC_PRESENTATION_FORMS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1162
            new UnicodeBlock("ALPHABETIC_PRESENTATION_FORMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1163
                             "ALPHABETIC PRESENTATION FORMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1164
                             "ALPHABETICPRESENTATIONFORMS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
         * Constant for the "Arabic Presentation Forms-A" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
        public static final UnicodeBlock ARABIC_PRESENTATION_FORMS_A =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1171
            new UnicodeBlock("ARABIC_PRESENTATION_FORMS_A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1172
                             "ARABIC PRESENTATION FORMS-A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1173
                             "ARABICPRESENTATIONFORMS-A");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
         * Constant for the "Combining Half Marks" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
        public static final UnicodeBlock COMBINING_HALF_MARKS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1180
            new UnicodeBlock("COMBINING_HALF_MARKS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1181
                             "COMBINING HALF MARKS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1182
                             "COMBININGHALFMARKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
         * Constant for the "CJK Compatibility Forms" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        public static final UnicodeBlock CJK_COMPATIBILITY_FORMS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1189
            new UnicodeBlock("CJK_COMPATIBILITY_FORMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1190
                             "CJK COMPATIBILITY FORMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1191
                             "CJKCOMPATIBILITYFORMS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
         * Constant for the "Small Form Variants" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
        public static final UnicodeBlock SMALL_FORM_VARIANTS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1198
            new UnicodeBlock("SMALL_FORM_VARIANTS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1199
                             "SMALL FORM VARIANTS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1200
                             "SMALLFORMVARIANTS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
         * Constant for the "Arabic Presentation Forms-B" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
        public static final UnicodeBlock ARABIC_PRESENTATION_FORMS_B =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1207
            new UnicodeBlock("ARABIC_PRESENTATION_FORMS_B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1208
                             "ARABIC PRESENTATION FORMS-B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1209
                             "ARABICPRESENTATIONFORMS-B");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
         * Constant for the "Halfwidth and Fullwidth Forms" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
        public static final UnicodeBlock HALFWIDTH_AND_FULLWIDTH_FORMS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
            new UnicodeBlock("HALFWIDTH_AND_FULLWIDTH_FORMS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1217
                             "HALFWIDTH AND FULLWIDTH FORMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1218
                             "HALFWIDTHANDFULLWIDTHFORMS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
         * Constant for the "Specials" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
         * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
        public static final UnicodeBlock SPECIALS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
            new UnicodeBlock("SPECIALS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
         * @deprecated As of J2SE 5, use {@link #HIGH_SURROGATES},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
         *             {@link #HIGH_PRIVATE_USE_SURROGATES}, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
         *             {@link #LOW_SURROGATES}. These new constants match
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
         *             the block definitions of the Unicode Standard.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
         *             The {@link #of(char)} and {@link #of(int)} methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
         *             return the new constants, not SURROGATES_AREA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
        @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
        public static final UnicodeBlock SURROGATES_AREA =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
            new UnicodeBlock("SURROGATES_AREA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
         * Constant for the "Syriac" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
        public static final UnicodeBlock SYRIAC =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
            new UnicodeBlock("SYRIAC");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
         * Constant for the "Thaana" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
        public static final UnicodeBlock THAANA =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
            new UnicodeBlock("THAANA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
         * Constant for the "Sinhala" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
        public static final UnicodeBlock SINHALA =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
            new UnicodeBlock("SINHALA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
         * Constant for the "Myanmar" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
        public static final UnicodeBlock MYANMAR =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
            new UnicodeBlock("MYANMAR");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
         * Constant for the "Ethiopic" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
        public static final UnicodeBlock ETHIOPIC =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
            new UnicodeBlock("ETHIOPIC");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
         * Constant for the "Cherokee" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
        public static final UnicodeBlock CHEROKEE =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
            new UnicodeBlock("CHEROKEE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
         * Constant for the "Unified Canadian Aboriginal Syllabics" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
        public static final UnicodeBlock UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
            new UnicodeBlock("UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1287
                             "UNIFIED CANADIAN ABORIGINAL SYLLABICS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1288
                             "UNIFIEDCANADIANABORIGINALSYLLABICS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
         * Constant for the "Ogham" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
        public static final UnicodeBlock OGHAM =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1295
            new UnicodeBlock("OGHAM");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
         * Constant for the "Runic" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
        public static final UnicodeBlock RUNIC =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1302
            new UnicodeBlock("RUNIC");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
         * Constant for the "Khmer" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
        public static final UnicodeBlock KHMER =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1309
            new UnicodeBlock("KHMER");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
         * Constant for the "Mongolian" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
        public static final UnicodeBlock MONGOLIAN =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1316
            new UnicodeBlock("MONGOLIAN");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
         * Constant for the "Braille Patterns" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
        public static final UnicodeBlock BRAILLE_PATTERNS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1323
            new UnicodeBlock("BRAILLE_PATTERNS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1324
                             "BRAILLE PATTERNS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1325
                             "BRAILLEPATTERNS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
         * Constant for the "CJK Radicals Supplement" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
        public static final UnicodeBlock CJK_RADICALS_SUPPLEMENT =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1332
            new UnicodeBlock("CJK_RADICALS_SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1333
                             "CJK RADICALS SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1334
                             "CJKRADICALSSUPPLEMENT");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
         * Constant for the "Kangxi Radicals" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
        public static final UnicodeBlock KANGXI_RADICALS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1341
            new UnicodeBlock("KANGXI_RADICALS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1342
                             "KANGXI RADICALS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1343
                             "KANGXIRADICALS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
         * Constant for the "Ideographic Description Characters" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
        public static final UnicodeBlock IDEOGRAPHIC_DESCRIPTION_CHARACTERS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1350
            new UnicodeBlock("IDEOGRAPHIC_DESCRIPTION_CHARACTERS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1351
                             "IDEOGRAPHIC DESCRIPTION CHARACTERS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1352
                             "IDEOGRAPHICDESCRIPTIONCHARACTERS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
         * Constant for the "Bopomofo Extended" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
        public static final UnicodeBlock BOPOMOFO_EXTENDED =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1359
            new UnicodeBlock("BOPOMOFO_EXTENDED",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1360
                             "BOPOMOFO EXTENDED",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1361
                             "BOPOMOFOEXTENDED");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
         * Constant for the "CJK Unified Ideographs Extension A" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
        public static final UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1368
            new UnicodeBlock("CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1369
                             "CJK UNIFIED IDEOGRAPHS EXTENSION A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1370
                             "CJKUNIFIEDIDEOGRAPHSEXTENSIONA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
         * Constant for the "Yi Syllables" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
        public static final UnicodeBlock YI_SYLLABLES =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1377
            new UnicodeBlock("YI_SYLLABLES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1378
                             "YI SYLLABLES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1379
                             "YISYLLABLES");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
         * Constant for the "Yi Radicals" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
        public static final UnicodeBlock YI_RADICALS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1386
            new UnicodeBlock("YI_RADICALS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1387
                             "YI RADICALS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1388
                             "YIRADICALS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
         * Constant for the "Cyrillic Supplementary" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
        public static final UnicodeBlock CYRILLIC_SUPPLEMENTARY =
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1396
            new UnicodeBlock("CYRILLIC_SUPPLEMENTARY",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1397
                             "CYRILLIC SUPPLEMENTARY",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1398
                             "CYRILLICSUPPLEMENTARY",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1399
                             "CYRILLIC SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1400
                             "CYRILLICSUPPLEMENT");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
         * Constant for the "Tagalog" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
        public static final UnicodeBlock TAGALOG =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
            new UnicodeBlock("TAGALOG");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
         * Constant for the "Hanunoo" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
        public static final UnicodeBlock HANUNOO =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
            new UnicodeBlock("HANUNOO");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
         * Constant for the "Buhid" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
        public static final UnicodeBlock BUHID =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
            new UnicodeBlock("BUHID");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
         * Constant for the "Tagbanwa" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
        public static final UnicodeBlock TAGBANWA =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
            new UnicodeBlock("TAGBANWA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
         * Constant for the "Limbu" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
        public static final UnicodeBlock LIMBU =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
            new UnicodeBlock("LIMBU");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
         * Constant for the "Tai Le" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
        public static final UnicodeBlock TAI_LE =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1442
            new UnicodeBlock("TAI_LE",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1443
                             "TAI LE",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1444
                             "TAILE");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
         * Constant for the "Khmer Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
        public static final UnicodeBlock KHMER_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1451
            new UnicodeBlock("KHMER_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1452
                             "KHMER SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1453
                             "KHMERSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
         * Constant for the "Phonetic Extensions" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
        public static final UnicodeBlock PHONETIC_EXTENSIONS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1460
            new UnicodeBlock("PHONETIC_EXTENSIONS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1461
                             "PHONETIC EXTENSIONS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1462
                             "PHONETICEXTENSIONS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
         * Constant for the "Miscellaneous Mathematical Symbols-A" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
        public static final UnicodeBlock MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
            new UnicodeBlock("MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1470
                             "MISCELLANEOUS MATHEMATICAL SYMBOLS-A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1471
                             "MISCELLANEOUSMATHEMATICALSYMBOLS-A");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
         * Constant for the "Supplemental Arrows-A" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
        public static final UnicodeBlock SUPPLEMENTAL_ARROWS_A =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1478
            new UnicodeBlock("SUPPLEMENTAL_ARROWS_A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1479
                             "SUPPLEMENTAL ARROWS-A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1480
                             "SUPPLEMENTALARROWS-A");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
         * Constant for the "Supplemental Arrows-B" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
        public static final UnicodeBlock SUPPLEMENTAL_ARROWS_B =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1487
            new UnicodeBlock("SUPPLEMENTAL_ARROWS_B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1488
                             "SUPPLEMENTAL ARROWS-B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1489
                             "SUPPLEMENTALARROWS-B");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
         * Constant for the "Miscellaneous Mathematical Symbols-B" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1495
        public static final UnicodeBlock MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1496
            new UnicodeBlock("MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1497
                             "MISCELLANEOUS MATHEMATICAL SYMBOLS-B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1498
                             "MISCELLANEOUSMATHEMATICALSYMBOLS-B");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
         * Constant for the "Supplemental Mathematical Operators" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
        public static final UnicodeBlock SUPPLEMENTAL_MATHEMATICAL_OPERATORS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
            new UnicodeBlock("SUPPLEMENTAL_MATHEMATICAL_OPERATORS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1506
                             "SUPPLEMENTAL MATHEMATICAL OPERATORS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1507
                             "SUPPLEMENTALMATHEMATICALOPERATORS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
         * Constant for the "Miscellaneous Symbols and Arrows" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
        public static final UnicodeBlock MISCELLANEOUS_SYMBOLS_AND_ARROWS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1514
            new UnicodeBlock("MISCELLANEOUS_SYMBOLS_AND_ARROWS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1515
                             "MISCELLANEOUS SYMBOLS AND ARROWS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1516
                             "MISCELLANEOUSSYMBOLSANDARROWS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
         * Constant for the "Katakana Phonetic Extensions" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
        public static final UnicodeBlock KATAKANA_PHONETIC_EXTENSIONS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1523
            new UnicodeBlock("KATAKANA_PHONETIC_EXTENSIONS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1524
                             "KATAKANA PHONETIC EXTENSIONS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1525
                             "KATAKANAPHONETICEXTENSIONS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
         * Constant for the "Yijing Hexagram Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
        public static final UnicodeBlock YIJING_HEXAGRAM_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1532
            new UnicodeBlock("YIJING_HEXAGRAM_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1533
                             "YIJING HEXAGRAM SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1534
                             "YIJINGHEXAGRAMSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
         * Constant for the "Variation Selectors" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
        public static final UnicodeBlock VARIATION_SELECTORS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1541
            new UnicodeBlock("VARIATION_SELECTORS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1542
                             "VARIATION SELECTORS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1543
                             "VARIATIONSELECTORS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
         * Constant for the "Linear B Syllabary" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
        public static final UnicodeBlock LINEAR_B_SYLLABARY =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1550
            new UnicodeBlock("LINEAR_B_SYLLABARY",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1551
                             "LINEAR B SYLLABARY",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1552
                             "LINEARBSYLLABARY");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
         * Constant for the "Linear B Ideograms" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
        public static final UnicodeBlock LINEAR_B_IDEOGRAMS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1559
            new UnicodeBlock("LINEAR_B_IDEOGRAMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1560
                             "LINEAR B IDEOGRAMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1561
                             "LINEARBIDEOGRAMS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
         * Constant for the "Aegean Numbers" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
        public static final UnicodeBlock AEGEAN_NUMBERS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1568
            new UnicodeBlock("AEGEAN_NUMBERS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1569
                             "AEGEAN NUMBERS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1570
                             "AEGEANNUMBERS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
         * Constant for the "Old Italic" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
        public static final UnicodeBlock OLD_ITALIC =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1577
            new UnicodeBlock("OLD_ITALIC",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1578
                             "OLD ITALIC",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1579
                             "OLDITALIC");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
         * Constant for the "Gothic" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1585
        public static final UnicodeBlock GOTHIC =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1586
            new UnicodeBlock("GOTHIC");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
         * Constant for the "Ugaritic" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1592
        public static final UnicodeBlock UGARITIC =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1593
            new UnicodeBlock("UGARITIC");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
         * Constant for the "Deseret" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1599
        public static final UnicodeBlock DESERET =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1600
            new UnicodeBlock("DESERET");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
         * Constant for the "Shavian" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1606
        public static final UnicodeBlock SHAVIAN =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1607
            new UnicodeBlock("SHAVIAN");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
         * Constant for the "Osmanya" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1613
        public static final UnicodeBlock OSMANYA =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1614
            new UnicodeBlock("OSMANYA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
         * Constant for the "Cypriot Syllabary" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
        public static final UnicodeBlock CYPRIOT_SYLLABARY =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1621
            new UnicodeBlock("CYPRIOT_SYLLABARY",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1622
                             "CYPRIOT SYLLABARY",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1623
                             "CYPRIOTSYLLABARY");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
         * Constant for the "Byzantine Musical Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
        public static final UnicodeBlock BYZANTINE_MUSICAL_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1630
            new UnicodeBlock("BYZANTINE_MUSICAL_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1631
                             "BYZANTINE MUSICAL SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1632
                             "BYZANTINEMUSICALSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
         * Constant for the "Musical Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
        public static final UnicodeBlock MUSICAL_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1639
            new UnicodeBlock("MUSICAL_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1640
                             "MUSICAL SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1641
                             "MUSICALSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
         * Constant for the "Tai Xuan Jing Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
        public static final UnicodeBlock TAI_XUAN_JING_SYMBOLS =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1648
            new UnicodeBlock("TAI_XUAN_JING_SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1649
                             "TAI XUAN JING SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1650
                             "TAIXUANJINGSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
         * Constant for the "Mathematical Alphanumeric Symbols" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
        public static final UnicodeBlock MATHEMATICAL_ALPHANUMERIC_SYMBOLS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
            new UnicodeBlock("MATHEMATICAL_ALPHANUMERIC_SYMBOLS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1658
                             "MATHEMATICAL ALPHANUMERIC SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1659
                             "MATHEMATICALALPHANUMERICSYMBOLS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
         * Constant for the "CJK Unified Ideographs Extension B" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
        public static final UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
            new UnicodeBlock("CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1667
                             "CJK UNIFIED IDEOGRAPHS EXTENSION B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1668
                             "CJKUNIFIEDIDEOGRAPHSEXTENSIONB");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
         * Constant for the "CJK Compatibility Ideographs Supplement" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
        public static final UnicodeBlock CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
            new UnicodeBlock("CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1676
                             "CJK COMPATIBILITY IDEOGRAPHS SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1677
                             "CJKCOMPATIBILITYIDEOGRAPHSSUPPLEMENT");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
         * Constant for the "Tags" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1683
        public static final UnicodeBlock TAGS =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1684
            new UnicodeBlock("TAGS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
         * Constant for the "Variation Selectors Supplement" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
        public static final UnicodeBlock VARIATION_SELECTORS_SUPPLEMENT =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1691
            new UnicodeBlock("VARIATION_SELECTORS_SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1692
                             "VARIATION SELECTORS SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1693
                             "VARIATIONSELECTORSSUPPLEMENT");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
         * Constant for the "Supplementary Private Use Area-A" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
        public static final UnicodeBlock SUPPLEMENTARY_PRIVATE_USE_AREA_A =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
            new UnicodeBlock("SUPPLEMENTARY_PRIVATE_USE_AREA_A",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1701
                             "SUPPLEMENTARY PRIVATE USE AREA-A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1702
                             "SUPPLEMENTARYPRIVATEUSEAREA-A");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
         * Constant for the "Supplementary Private Use Area-B" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
        public static final UnicodeBlock SUPPLEMENTARY_PRIVATE_USE_AREA_B =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
            new UnicodeBlock("SUPPLEMENTARY_PRIVATE_USE_AREA_B",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1710
                             "SUPPLEMENTARY PRIVATE USE AREA-B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1711
                             "SUPPLEMENTARYPRIVATEUSEAREA-B");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
         * Constant for the "High Surrogates" Unicode character block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
         * This block represents codepoint values in the high surrogate
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1716
         * range: U+D800 through U+DB7F
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
        public static final UnicodeBlock HIGH_SURROGATES =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1721
            new UnicodeBlock("HIGH_SURROGATES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1722
                             "HIGH SURROGATES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1723
                             "HIGHSURROGATES");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
         * Constant for the "High Private Use Surrogates" Unicode character block.
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1727
         * This block represents codepoint values in the private use high surrogate
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1728
         * range: U+DB80 through U+DBFF
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
        public static final UnicodeBlock HIGH_PRIVATE_USE_SURROGATES =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1733
            new UnicodeBlock("HIGH_PRIVATE_USE_SURROGATES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1734
                             "HIGH PRIVATE USE SURROGATES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1735
                             "HIGHPRIVATEUSESURROGATES");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
         * Constant for the "Low Surrogates" Unicode character block.
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1739
         * This block represents codepoint values in the low surrogate
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1740
         * range: U+DC00 through U+DFFF
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
        public static final UnicodeBlock LOW_SURROGATES =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1745
            new UnicodeBlock("LOW_SURROGATES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1746
                             "LOW SURROGATES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1747
                             "LOWSURROGATES");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1749
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1750
         * Constant for the "Arabic Supplement" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1751
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1752
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1753
        public static final UnicodeBlock ARABIC_SUPPLEMENT =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1754
            new UnicodeBlock("ARABIC_SUPPLEMENT",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1755
                             "ARABIC SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1756
                             "ARABICSUPPLEMENT");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1757
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1758
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1759
         * Constant for the "NKo" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1760
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1761
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1762
        public static final UnicodeBlock NKO =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1763
            new UnicodeBlock("NKO");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1764
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1765
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1766
         * Constant for the "Ethiopic Supplement" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1767
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1768
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1769
        public static final UnicodeBlock ETHIOPIC_SUPPLEMENT =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1770
            new UnicodeBlock("ETHIOPIC_SUPPLEMENT",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1771
                             "ETHIOPIC SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1772
                             "ETHIOPICSUPPLEMENT");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1773
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1774
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1775
         * Constant for the "New Tai Lue" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1776
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1777
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1778
        public static final UnicodeBlock NEW_TAI_LUE =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1779
            new UnicodeBlock("NEW_TAI_LUE",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1780
                             "NEW TAI LUE",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1781
                             "NEWTAILUE");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1782
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1783
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1784
         * Constant for the "Buginese" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1785
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1786
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1787
        public static final UnicodeBlock BUGINESE =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1788
            new UnicodeBlock("BUGINESE");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1789
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1790
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1791
         * Constant for the "Balinese" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1792
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1793
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1794
        public static final UnicodeBlock BALINESE =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1795
            new UnicodeBlock("BALINESE");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1796
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1797
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1798
         * Constant for the "Sundanese" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1799
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1800
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1801
        public static final UnicodeBlock SUNDANESE =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1802
            new UnicodeBlock("SUNDANESE");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1803
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1804
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1805
         * Constant for the "Lepcha" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1806
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1807
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1808
        public static final UnicodeBlock LEPCHA =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1809
            new UnicodeBlock("LEPCHA");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1810
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1811
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1812
         * Constant for the "Ol Chiki" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1813
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1814
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1815
        public static final UnicodeBlock OL_CHIKI =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1816
            new UnicodeBlock("OL_CHIKI",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1817
                             "OL CHIKI",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1818
                             "OLCHIKI");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1819
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1820
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1821
         * Constant for the "Phonetic Extensions Supplement" Unicode character
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1822
         * block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1823
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1824
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1825
        public static final UnicodeBlock PHONETIC_EXTENSIONS_SUPPLEMENT =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1826
            new UnicodeBlock("PHONETIC_EXTENSIONS_SUPPLEMENT",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1827
                             "PHONETIC EXTENSIONS SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1828
                             "PHONETICEXTENSIONSSUPPLEMENT");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1829
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1830
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1831
         * Constant for the "Combining Diacritical Marks Supplement" Unicode
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1832
         * character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1833
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1834
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1835
        public static final UnicodeBlock COMBINING_DIACRITICAL_MARKS_SUPPLEMENT =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1836
            new UnicodeBlock("COMBINING_DIACRITICAL_MARKS_SUPPLEMENT",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1837
                             "COMBINING DIACRITICAL MARKS SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1838
                             "COMBININGDIACRITICALMARKSSUPPLEMENT");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1839
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1840
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1841
         * Constant for the "Glagolitic" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1842
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1843
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1844
        public static final UnicodeBlock GLAGOLITIC =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1845
            new UnicodeBlock("GLAGOLITIC");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1846
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1847
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1848
         * Constant for the "Latin Extended-C" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1849
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1850
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1851
        public static final UnicodeBlock LATIN_EXTENDED_C =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1852
            new UnicodeBlock("LATIN_EXTENDED_C",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1853
                             "LATIN EXTENDED-C",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1854
                             "LATINEXTENDED-C");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1855
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1856
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1857
         * Constant for the "Coptic" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1858
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1859
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1860
        public static final UnicodeBlock COPTIC =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1861
            new UnicodeBlock("COPTIC");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1862
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1863
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1864
         * Constant for the "Georgian Supplement" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1865
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1866
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1867
        public static final UnicodeBlock GEORGIAN_SUPPLEMENT =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1868
            new UnicodeBlock("GEORGIAN_SUPPLEMENT",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1869
                             "GEORGIAN SUPPLEMENT",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1870
                             "GEORGIANSUPPLEMENT");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1871
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1872
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1873
         * Constant for the "Tifinagh" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1874
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1875
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1876
        public static final UnicodeBlock TIFINAGH =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1877
            new UnicodeBlock("TIFINAGH");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1878
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1879
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1880
         * Constant for the "Ethiopic Extended" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1881
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1882
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1883
        public static final UnicodeBlock ETHIOPIC_EXTENDED =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1884
            new UnicodeBlock("ETHIOPIC_EXTENDED",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1885
                             "ETHIOPIC EXTENDED",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1886
                             "ETHIOPICEXTENDED");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1887
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1888
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1889
         * Constant for the "Cyrillic Extended-A" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1890
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1891
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1892
        public static final UnicodeBlock CYRILLIC_EXTENDED_A =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1893
            new UnicodeBlock("CYRILLIC_EXTENDED_A",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1894
                             "CYRILLIC EXTENDED-A",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1895
                             "CYRILLICEXTENDED-A");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1896
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1897
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1898
         * Constant for the "Supplemental Punctuation" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1899
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1900
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1901
        public static final UnicodeBlock SUPPLEMENTAL_PUNCTUATION =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1902
            new UnicodeBlock("SUPPLEMENTAL_PUNCTUATION",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1903
                             "SUPPLEMENTAL PUNCTUATION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1904
                             "SUPPLEMENTALPUNCTUATION");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1905
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1906
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1907
         * Constant for the "CJK Strokes" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1908
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1909
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1910
        public static final UnicodeBlock CJK_STROKES =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1911
            new UnicodeBlock("CJK_STROKES",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1912
                             "CJK STROKES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1913
                             "CJKSTROKES");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1914
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1915
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1916
         * Constant for the "Vai" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1917
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1918
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1919
        public static final UnicodeBlock VAI =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1920
            new UnicodeBlock("VAI");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1921
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1922
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1923
         * Constant for the "Cyrillic Extended-B" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1924
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1925
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1926
        public static final UnicodeBlock CYRILLIC_EXTENDED_B =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1927
            new UnicodeBlock("CYRILLIC_EXTENDED_B",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1928
                             "CYRILLIC EXTENDED-B",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1929
                             "CYRILLICEXTENDED-B");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1930
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1931
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1932
         * Constant for the "Modifier Tone Letters" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1933
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1934
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1935
        public static final UnicodeBlock MODIFIER_TONE_LETTERS =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1936
            new UnicodeBlock("MODIFIER_TONE_LETTERS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1937
                             "MODIFIER TONE LETTERS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1938
                             "MODIFIERTONELETTERS");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1939
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1940
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1941
         * Constant for the "Latin Extended-D" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1942
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1943
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1944
        public static final UnicodeBlock LATIN_EXTENDED_D =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1945
            new UnicodeBlock("LATIN_EXTENDED_D",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1946
                             "LATIN EXTENDED-D",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1947
                             "LATINEXTENDED-D");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1948
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1949
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1950
         * Constant for the "Syloti Nagri" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1951
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1952
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1953
        public static final UnicodeBlock SYLOTI_NAGRI =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1954
            new UnicodeBlock("SYLOTI_NAGRI",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1955
                             "SYLOTI NAGRI",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1956
                             "SYLOTINAGRI");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1957
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1958
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1959
         * Constant for the "Phags-pa" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1960
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1961
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1962
        public static final UnicodeBlock PHAGS_PA =
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1963
            new UnicodeBlock("PHAGS_PA",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1964
                             "PHAGS-PA");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1965
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1966
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1967
         * Constant for the "Saurashtra" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1968
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1969
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1970
        public static final UnicodeBlock SAURASHTRA =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1971
            new UnicodeBlock("SAURASHTRA");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1972
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1973
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1974
         * Constant for the "Kayah Li" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1975
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1976
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1977
        public static final UnicodeBlock KAYAH_LI =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1978
            new UnicodeBlock("KAYAH_LI",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1979
                             "KAYAH LI",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1980
                             "KAYAHLI");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1981
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1982
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1983
         * Constant for the "Rejang" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1984
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1985
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1986
        public static final UnicodeBlock REJANG =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1987
            new UnicodeBlock("REJANG");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1988
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1989
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1990
         * Constant for the "Cham" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1991
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1992
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1993
        public static final UnicodeBlock CHAM =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  1994
            new UnicodeBlock("CHAM");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1995
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1996
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1997
         * Constant for the "Vertical Forms" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1998
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  1999
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2000
        public static final UnicodeBlock VERTICAL_FORMS =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2001
            new UnicodeBlock("VERTICAL_FORMS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2002
                             "VERTICAL FORMS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2003
                             "VERTICALFORMS");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2004
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2005
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2006
         * Constant for the "Ancient Greek Numbers" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2007
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2008
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2009
        public static final UnicodeBlock ANCIENT_GREEK_NUMBERS =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2010
            new UnicodeBlock("ANCIENT_GREEK_NUMBERS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2011
                             "ANCIENT GREEK NUMBERS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2012
                             "ANCIENTGREEKNUMBERS");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2013
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2014
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2015
         * Constant for the "Ancient Symbols" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2016
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2017
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2018
        public static final UnicodeBlock ANCIENT_SYMBOLS =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2019
            new UnicodeBlock("ANCIENT_SYMBOLS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2020
                             "ANCIENT SYMBOLS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2021
                             "ANCIENTSYMBOLS");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2022
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2023
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2024
         * Constant for the "Phaistos Disc" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2025
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2026
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2027
        public static final UnicodeBlock PHAISTOS_DISC =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2028
            new UnicodeBlock("PHAISTOS_DISC",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2029
                             "PHAISTOS DISC",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2030
                             "PHAISTOSDISC");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2031
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2032
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2033
         * Constant for the "Lycian" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2034
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2035
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2036
        public static final UnicodeBlock LYCIAN =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2037
            new UnicodeBlock("LYCIAN");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2038
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2039
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2040
         * Constant for the "Carian" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2041
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2042
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2043
        public static final UnicodeBlock CARIAN =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2044
            new UnicodeBlock("CARIAN");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2045
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2046
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2047
         * Constant for the "Old Persian" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2048
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2049
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2050
        public static final UnicodeBlock OLD_PERSIAN =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2051
            new UnicodeBlock("OLD_PERSIAN",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2052
                             "OLD PERSIAN",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2053
                             "OLDPERSIAN");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2054
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2055
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2056
         * Constant for the "Phoenician" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2057
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2058
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2059
        public static final UnicodeBlock PHOENICIAN =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2060
            new UnicodeBlock("PHOENICIAN");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2061
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2062
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2063
         * Constant for the "Lydian" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2064
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2065
         */
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2066
        public static final UnicodeBlock LYDIAN =
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2067
            new UnicodeBlock("LYDIAN");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2068
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2069
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2070
         * Constant for the "Kharoshthi" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2071
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2072
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2073
        public static final UnicodeBlock KHAROSHTHI =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2074
            new UnicodeBlock("KHAROSHTHI");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2075
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2076
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2077
         * Constant for the "Cuneiform" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2078
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2079
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2080
        public static final UnicodeBlock CUNEIFORM =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2081
            new UnicodeBlock("CUNEIFORM");
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2082
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2083
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2084
         * Constant for the "Cuneiform Numbers and Punctuation" Unicode
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2085
         * character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2086
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2087
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2088
        public static final UnicodeBlock CUNEIFORM_NUMBERS_AND_PUNCTUATION =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2089
            new UnicodeBlock("CUNEIFORM_NUMBERS_AND_PUNCTUATION",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2090
                             "CUNEIFORM NUMBERS AND PUNCTUATION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2091
                             "CUNEIFORMNUMBERSANDPUNCTUATION");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2092
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2093
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2094
         * Constant for the "Ancient Greek Musical Notation" Unicode character
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2095
         * block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2096
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2097
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2098
        public static final UnicodeBlock ANCIENT_GREEK_MUSICAL_NOTATION =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2099
            new UnicodeBlock("ANCIENT_GREEK_MUSICAL_NOTATION",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2100
                             "ANCIENT GREEK MUSICAL NOTATION",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2101
                             "ANCIENTGREEKMUSICALNOTATION");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2102
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2103
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2104
         * Constant for the "Counting Rod Numerals" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2105
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2106
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2107
        public static final UnicodeBlock COUNTING_ROD_NUMERALS =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2108
            new UnicodeBlock("COUNTING_ROD_NUMERALS",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2109
                             "COUNTING ROD NUMERALS",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2110
                             "COUNTINGRODNUMERALS");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2111
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2112
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2113
         * Constant for the "Mahjong Tiles" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2114
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2115
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2116
        public static final UnicodeBlock MAHJONG_TILES =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2117
            new UnicodeBlock("MAHJONG_TILES",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2118
                             "MAHJONG TILES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2119
                             "MAHJONGTILES");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2120
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2121
        /**
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2122
         * Constant for the "Domino Tiles" Unicode character block.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2123
         * @since 1.7
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2124
         */
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2125
        public static final UnicodeBlock DOMINO_TILES =
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2126
            new UnicodeBlock("DOMINO_TILES",
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2127
                             "DOMINO TILES",
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2128
                             "DOMINOTILES");
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2129
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
        private static final int blockStarts[] = {
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2131
            0x0000,   // 0000..007F; Basic Latin
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2132
            0x0080,   // 0080..00FF; Latin-1 Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2133
            0x0100,   // 0100..017F; Latin Extended-A
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2134
            0x0180,   // 0180..024F; Latin Extended-B
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2135
            0x0250,   // 0250..02AF; IPA Extensions
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2136
            0x02B0,   // 02B0..02FF; Spacing Modifier Letters
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2137
            0x0300,   // 0300..036F; Combining Diacritical Marks
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2138
            0x0370,   // 0370..03FF; Greek and Coptic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2139
            0x0400,   // 0400..04FF; Cyrillic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2140
            0x0500,   // 0500..052F; Cyrillic Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2141
            0x0530,   // 0530..058F; Armenian
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2142
            0x0590,   // 0590..05FF; Hebrew
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2143
            0x0600,   // 0600..06FF; Arabic
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2144
            0x0700,   // 0700..074F; Syriac
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2145
            0x0750,   // 0750..077F; Arabic Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2146
            0x0780,   // 0780..07BF; Thaana
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2147
            0x07C0,   // 07C0..07FF; NKo
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2148
            0x0800,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2149
            0x0900,   // 0900..097F; Devanagari
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2150
            0x0980,   // 0980..09FF; Bengali
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2151
            0x0A00,   // 0A00..0A7F; Gurmukhi
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2152
            0x0A80,   // 0A80..0AFF; Gujarati
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2153
            0x0B00,   // 0B00..0B7F; Oriya
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2154
            0x0B80,   // 0B80..0BFF; Tamil
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2155
            0x0C00,   // 0C00..0C7F; Telugu
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2156
            0x0C80,   // 0C80..0CFF; Kannada
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2157
            0x0D00,   // 0D00..0D7F; Malayalam
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2158
            0x0D80,   // 0D80..0DFF; Sinhala
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2159
            0x0E00,   // 0E00..0E7F; Thai
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2160
            0x0E80,   // 0E80..0EFF; Lao
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2161
            0x0F00,   // 0F00..0FFF; Tibetan
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2162
            0x1000,   // 1000..109F; Myanmar
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2163
            0x10A0,   // 10A0..10FF; Georgian
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2164
            0x1100,   // 1100..11FF; Hangul Jamo
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2165
            0x1200,   // 1200..137F; Ethiopic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2166
            0x1380,   // 1380..139F; Ethiopic Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2167
            0x13A0,   // 13A0..13FF; Cherokee
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2168
            0x1400,   // 1400..167F; Unified Canadian Aboriginal Syllabics
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2169
            0x1680,   // 1680..169F; Ogham
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2170
            0x16A0,   // 16A0..16FF; Runic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2171
            0x1700,   // 1700..171F; Tagalog
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2172
            0x1720,   // 1720..173F; Hanunoo
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2173
            0x1740,   // 1740..175F; Buhid
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2174
            0x1760,   // 1760..177F; Tagbanwa
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2175
            0x1780,   // 1780..17FF; Khmer
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2176
            0x1800,   // 1800..18AF; Mongolian
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2177
            0x18B0,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2178
            0x1900,   // 1900..194F; Limbu
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2179
            0x1950,   // 1950..197F; Tai Le
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2180
            0x1980,   // 1980..19DF; New Tai Lue
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2181
            0x19E0,   // 19E0..19FF; Khmer Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2182
            0x1A00,   // 1A00..1A1F; Buginese
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2183
            0x1A20,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2184
            0x1B00,   // 1B00..1B7F; Balinese
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2185
            0x1B80,   // 1B80..1BBF; Sundanese
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2186
            0x1BC0,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2187
            0x1C00,   // 1C00..1C4F; Lepcha
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2188
            0x1C50,   // 1C50..1C7F; Ol Chiki
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2189
            0x1C80,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2190
            0x1D00,   // 1D00..1D7F; Phonetic Extensions
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2191
            0x1D80,   // 1D80..1DBF; Phonetic Extensions Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2192
            0x1DC0,   // 1DC0..1DFF; Combining Diacritical Marks Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2193
            0x1E00,   // 1E00..1EFF; Latin Extended Additional
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2194
            0x1F00,   // 1F00..1FFF; Greek Extended
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2195
            0x2000,   // 2000..206F; General Punctuation
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2196
            0x2070,   // 2070..209F; Superscripts and Subscripts
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2197
            0x20A0,   // 20A0..20CF; Currency Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2198
            0x20D0,   // 20D0..20FF; Combining Diacritical Marks for Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2199
            0x2100,   // 2100..214F; Letterlike Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2200
            0x2150,   // 2150..218F; Number Forms
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2201
            0x2190,   // 2190..21FF; Arrows
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2202
            0x2200,   // 2200..22FF; Mathematical Operators
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2203
            0x2300,   // 2300..23FF; Miscellaneous Technical
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2204
            0x2400,   // 2400..243F; Control Pictures
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2205
            0x2440,   // 2440..245F; Optical Character Recognition
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2206
            0x2460,   // 2460..24FF; Enclosed Alphanumerics
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2207
            0x2500,   // 2500..257F; Box Drawing
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2208
            0x2580,   // 2580..259F; Block Elements
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2209
            0x25A0,   // 25A0..25FF; Geometric Shapes
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2210
            0x2600,   // 2600..26FF; Miscellaneous Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2211
            0x2700,   // 2700..27BF; Dingbats
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2212
            0x27C0,   // 27C0..27EF; Miscellaneous Mathematical Symbols-A
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2213
            0x27F0,   // 27F0..27FF; Supplemental Arrows-A
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2214
            0x2800,   // 2800..28FF; Braille Patterns
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2215
            0x2900,   // 2900..297F; Supplemental Arrows-B
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2216
            0x2980,   // 2980..29FF; Miscellaneous Mathematical Symbols-B
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2217
            0x2A00,   // 2A00..2AFF; Supplemental Mathematical Operators
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2218
            0x2B00,   // 2B00..2BFF; Miscellaneous Symbols and Arrows
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2219
            0x2C00,   // 2C00..2C5F; Glagolitic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2220
            0x2C60,   // 2C60..2C7F; Latin Extended-C
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2221
            0x2C80,   // 2C80..2CFF; Coptic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2222
            0x2D00,   // 2D00..2D2F; Georgian Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2223
            0x2D30,   // 2D30..2D7F; Tifinagh
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2224
            0x2D80,   // 2D80..2DDF; Ethiopic Extended
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2225
            0x2DE0,   // 2DE0..2DFF; Cyrillic Extended-A
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2226
            0x2E00,   // 2E00..2E7F; Supplemental Punctuation
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2227
            0x2E80,   // 2E80..2EFF; CJK Radicals Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2228
            0x2F00,   // 2F00..2FDF; Kangxi Radicals
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2229
            0x2FE0,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2230
            0x2FF0,   // 2FF0..2FFF; Ideographic Description Characters
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2231
            0x3000,   // 3000..303F; CJK Symbols and Punctuation
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2232
            0x3040,   // 3040..309F; Hiragana
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2233
            0x30A0,   // 30A0..30FF; Katakana
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2234
            0x3100,   // 3100..312F; Bopomofo
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2235
            0x3130,   // 3130..318F; Hangul Compatibility Jamo
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2236
            0x3190,   // 3190..319F; Kanbun
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2237
            0x31A0,   // 31A0..31BF; Bopomofo Extended
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2238
            0x31C0,   // 31C0..31EF; CJK Strokes
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2239
            0x31F0,   // 31F0..31FF; Katakana Phonetic Extensions
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2240
            0x3200,   // 3200..32FF; Enclosed CJK Letters and Months
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2241
            0x3300,   // 3300..33FF; CJK Compatibility
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2242
            0x3400,   // 3400..4DBF; CJK Unified Ideographs Extension A
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2243
            0x4DC0,   // 4DC0..4DFF; Yijing Hexagram Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2244
            0x4E00,   // 4E00..9FFF; CJK Unified Ideograph
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2245
            0xA000,   // A000..A48F; Yi Syllables
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2246
            0xA490,   // A490..A4CF; Yi Radicals
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2247
            0xA4D0,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2248
            0xA500,   // A500..A63F; Vai
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2249
            0xA640,   // A640..A69F; Cyrillic Extended-B
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2250
            0xA6A0,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2251
            0xA700,   // A700..A71F; Modifier Tone Letters
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2252
            0xA720,   // A720..A7FF; Latin Extended-D
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2253
            0xA800,   // A800..A82F; Syloti Nagri
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2254
            0xA830,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2255
            0xA840,   // A840..A87F; Phags-pa
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2256
            0xA880,   // A880..A8DF; Saurashtra
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2257
            0xA8E0,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2258
            0xA900,   // A900..A92F; Kayah Li
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2259
            0xA930,   // A930..A95F; Rejang
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2260
            0xA960,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2261
            0xAA00,   // AA00..AA5F; Cham
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2262
            0xAA60,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2263
            0xAC00,   // AC00..D7AF; Hangul Syllables
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2264
            0xD7B0,   //             unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2265
            0xD800,   // D800..DB7F; High Surrogates
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2266
            0xDB80,   // DB80..DBFF; High Private Use Surrogates
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2267
            0xDC00,   // DC00..DFFF; Low Surrogates
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2268
            0xE000,   // E000..F8FF; Private Use Area
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2269
            0xF900,   // F900..FAFF; CJK Compatibility Ideographs
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2270
            0xFB00,   // FB00..FB4F; Alphabetic Presentation Forms
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2271
            0xFB50,   // FB50..FDFF; Arabic Presentation Forms-A
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2272
            0xFE00,   // FE00..FE0F; Variation Selectors
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2273
            0xFE10,   // FE10..FE1F; Vertical Forms
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2274
            0xFE20,   // FE20..FE2F; Combining Half Marks
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2275
            0xFE30,   // FE30..FE4F; CJK Compatibility Forms
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2276
            0xFE50,   // FE50..FE6F; Small Form Variants
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2277
            0xFE70,   // FE70..FEFF; Arabic Presentation Forms-B
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2278
            0xFF00,   // FF00..FFEF; Halfwidth and Fullwidth Forms
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2279
            0xFFF0,   // FFF0..FFFF; Specials
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2280
            0x10000,  // 10000..1007F; Linear B Syllabary
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2281
            0x10080,  // 10080..100FF; Linear B Ideograms
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2282
            0x10100,  // 10100..1013F; Aegean Numbers
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2283
            0x10140,  // 10140..1018F; Ancient Greek Numbers
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2284
            0x10190,  // 10190..101CF; Ancient Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2285
            0x101D0,  // 101D0..101FF; Phaistos Disc
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2286
            0x10200,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2287
            0x10280,  // 10280..1029F; Lycian
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2288
            0x102A0,  // 102A0..102DF; Carian
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2289
            0x102E0,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2290
            0x10300,  // 10300..1032F; Old Italic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2291
            0x10330,  // 10330..1034F; Gothic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2292
            0x10350,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2293
            0x10380,  // 10380..1039F; Ugaritic
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2294
            0x103A0,  // 103A0..103DF; Old Persian
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2295
            0x103E0,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2296
            0x10400,  // 10400..1044F; Desere
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2297
            0x10450,  // 10450..1047F; Shavian
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2298
            0x10480,  // 10480..104AF; Osmanya
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2299
            0x104B0,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2300
            0x10800,  // 10800..1083F; Cypriot Syllabary
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2301
            0x10840,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2302
            0x10900,  // 10900..1091F; Phoenician
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2303
            0x10920,  // 10920..1093F; Lydian
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2304
            0x10940,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2305
            0x10A00,  // 10A00..10A5F; Kharoshthi
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2306
            0x10A60,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2307
            0x12000,  // 12000..123FF; Cuneiform
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2308
            0x12400,  // 12400..1247F; Cuneiform Numbers and Punctuation
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2309
            0x12480,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2310
            0x1D000,  // 1D000..1D0FF; Byzantine Musical Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2311
            0x1D100,  // 1D100..1D1FF; Musical Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2312
            0x1D200,  // 1D200..1D24F; Ancient Greek Musical Notation
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2313
            0x1D250,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2314
            0x1D300,  // 1D300..1D35F; Tai Xuan Jing Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2315
            0x1D360,  // 1D360..1D37F; Counting Rod Numerals
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2316
            0x1D380,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2317
            0x1D400,  // 1D400..1D7FF; Mathematical Alphanumeric Symbols
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2318
            0x1D800,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2319
            0x1F000,  // 1F000..1F02F; Mahjong Tiles
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2320
            0x1F030,  // 1F030..1F09F; Domino Tiles
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2321
            0x1F0A0,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2322
            0x20000,  // 20000..2A6DF; CJK Unified Ideographs Extension B
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2323
            0x2A6E0,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2324
            0x2F800,  // 2F800..2FA1F; CJK Compatibility Ideographs Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2325
            0x2FA20,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2326
            0xE0000,  // E0000..E007F; Tags
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2327
            0xE0080,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2328
            0xE0100,  // E0100..E01EF; Variation Selectors Supplement
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2329
            0xE01F0,  //               unassigned
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2330
            0xF0000,  // F0000..FFFFF; Supplementary Private Use Area-A
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2331
            0x100000, // 100000..10FFFF; Supplementary Private Use Area-B
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
        private static final UnicodeBlock[] blocks = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2335
            BASIC_LATIN,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
            LATIN_1_SUPPLEMENT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2337
            LATIN_EXTENDED_A,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
            LATIN_EXTENDED_B,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
            IPA_EXTENSIONS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
            SPACING_MODIFIER_LETTERS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2341
            COMBINING_DIACRITICAL_MARKS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
            GREEK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
            CYRILLIC,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
            CYRILLIC_SUPPLEMENTARY,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2345
            ARMENIAN,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
            HEBREW,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
            ARABIC,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
            SYRIAC,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2349
            ARABIC_SUPPLEMENT,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
            THAANA,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2351
            NKO,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
            DEVANAGARI,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
            BENGALI,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
            GURMUKHI,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2356
            GUJARATI,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
            ORIYA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
            TAMIL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
            TELUGU,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
            KANNADA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
            MALAYALAM,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
            SINHALA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
            THAI,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
            LAO,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2365
            TIBETAN,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2366
            MYANMAR,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
            GEORGIAN,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
            HANGUL_JAMO,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2369
            ETHIOPIC,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2370
            ETHIOPIC_SUPPLEMENT,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2371
            CHEROKEE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2372
            UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2373
            OGHAM,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2374
            RUNIC,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2375
            TAGALOG,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
            HANUNOO,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2377
            BUHID,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
            TAGBANWA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2379
            KHMER,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2380
            MONGOLIAN,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2381
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2382
            LIMBU,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2383
            TAI_LE,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2384
            NEW_TAI_LUE,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2385
            KHMER_SYMBOLS,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2386
            BUGINESE,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2387
            null,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2388
            BALINESE,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2389
            SUNDANESE,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2390
            null,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2391
            LEPCHA,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2392
            OL_CHIKI,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2394
            PHONETIC_EXTENSIONS,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2395
            PHONETIC_EXTENSIONS_SUPPLEMENT,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2396
            COMBINING_DIACRITICAL_MARKS_SUPPLEMENT,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
            LATIN_EXTENDED_ADDITIONAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2398
            GREEK_EXTENDED,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
            GENERAL_PUNCTUATION,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
            SUPERSCRIPTS_AND_SUBSCRIPTS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
            CURRENCY_SYMBOLS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2402
            COMBINING_MARKS_FOR_SYMBOLS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
            LETTERLIKE_SYMBOLS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
            NUMBER_FORMS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
            ARROWS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
            MATHEMATICAL_OPERATORS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
            MISCELLANEOUS_TECHNICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
            CONTROL_PICTURES,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
            OPTICAL_CHARACTER_RECOGNITION,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
            ENCLOSED_ALPHANUMERICS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
            BOX_DRAWING,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
            BLOCK_ELEMENTS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2413
            GEOMETRIC_SHAPES,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
            MISCELLANEOUS_SYMBOLS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
            DINGBATS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
            MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
            SUPPLEMENTAL_ARROWS_A,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
            BRAILLE_PATTERNS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
            SUPPLEMENTAL_ARROWS_B,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
            MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
            SUPPLEMENTAL_MATHEMATICAL_OPERATORS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2422
            MISCELLANEOUS_SYMBOLS_AND_ARROWS,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2423
            GLAGOLITIC,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2424
            LATIN_EXTENDED_C,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2425
            COPTIC,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2426
            GEORGIAN_SUPPLEMENT,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2427
            TIFINAGH,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2428
            ETHIOPIC_EXTENDED,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2429
            CYRILLIC_EXTENDED_A,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2430
            SUPPLEMENTAL_PUNCTUATION,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2431
            CJK_RADICALS_SUPPLEMENT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2432
            KANGXI_RADICALS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2433
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2434
            IDEOGRAPHIC_DESCRIPTION_CHARACTERS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2435
            CJK_SYMBOLS_AND_PUNCTUATION,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2436
            HIRAGANA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2437
            KATAKANA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2438
            BOPOMOFO,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2439
            HANGUL_COMPATIBILITY_JAMO,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2440
            KANBUN,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2441
            BOPOMOFO_EXTENDED,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2442
            CJK_STROKES,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2443
            KATAKANA_PHONETIC_EXTENSIONS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2444
            ENCLOSED_CJK_LETTERS_AND_MONTHS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2445
            CJK_COMPATIBILITY,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2446
            CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2447
            YIJING_HEXAGRAM_SYMBOLS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
            CJK_UNIFIED_IDEOGRAPHS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2449
            YI_SYLLABLES,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2450
            YI_RADICALS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2451
            null,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2452
            VAI,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2453
            CYRILLIC_EXTENDED_B,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2454
            null,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2455
            MODIFIER_TONE_LETTERS,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2456
            LATIN_EXTENDED_D,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2457
            SYLOTI_NAGRI,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2458
            null,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2459
            PHAGS_PA,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2460
            SAURASHTRA,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2461
            null,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2462
            KAYAH_LI,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2463
            REJANG,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2464
            null,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2465
            CHAM,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2466
            null,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2467
            HANGUL_SYLLABLES,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2468
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2469
            HIGH_SURROGATES,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2470
            HIGH_PRIVATE_USE_SURROGATES,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2471
            LOW_SURROGATES,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
            PRIVATE_USE_AREA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2473
            CJK_COMPATIBILITY_IDEOGRAPHS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2474
            ALPHABETIC_PRESENTATION_FORMS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2475
            ARABIC_PRESENTATION_FORMS_A,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2476
            VARIATION_SELECTORS,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2477
            VERTICAL_FORMS,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2478
            COMBINING_HALF_MARKS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
            CJK_COMPATIBILITY_FORMS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2480
            SMALL_FORM_VARIANTS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2481
            ARABIC_PRESENTATION_FORMS_B,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2482
            HALFWIDTH_AND_FULLWIDTH_FORMS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2483
            SPECIALS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2484
            LINEAR_B_SYLLABARY,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
            LINEAR_B_IDEOGRAMS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2486
            AEGEAN_NUMBERS,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2487
            ANCIENT_GREEK_NUMBERS,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2488
            ANCIENT_SYMBOLS,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2489
            PHAISTOS_DISC,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2490
            null,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2491
            LYCIAN,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2492
            CARIAN,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2493
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
            OLD_ITALIC,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
            GOTHIC,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2496
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2497
            UGARITIC,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2498
            OLD_PERSIAN,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2499
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2500
            DESERET,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2501
            SHAVIAN,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2502
            OSMANYA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2503
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2504
            CYPRIOT_SYLLABARY,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2505
            null,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2506
            PHOENICIAN,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2507
            LYDIAN,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2508
            null,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2509
            KHAROSHTHI,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2510
            null,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2511
            CUNEIFORM,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2512
            CUNEIFORM_NUMBERS_AND_PUNCTUATION,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2513
            null,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2514
            BYZANTINE_MUSICAL_SYMBOLS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2515
            MUSICAL_SYMBOLS,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2516
            ANCIENT_GREEK_MUSICAL_NOTATION,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2517
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
            TAI_XUAN_JING_SYMBOLS,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2519
            COUNTING_ROD_NUMERALS,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2520
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2521
            MATHEMATICAL_ALPHANUMERIC_SYMBOLS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2522
            null,
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2523
            MAHJONG_TILES,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2524
            DOMINO_TILES,
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2525
            null,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2526
            CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2527
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2528
            CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2529
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2530
            TAGS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2531
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2532
            VARIATION_SELECTORS_SUPPLEMENT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2533
            null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2534
            SUPPLEMENTARY_PRIVATE_USE_AREA_A,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2535
            SUPPLEMENTARY_PRIVATE_USE_AREA_B
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2536
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2537
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2538
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2539
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2540
         * Returns the object representing the Unicode block containing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2541
         * given character, or <code>null</code> if the character is not a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2542
         * member of a defined block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2543
         *
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2544
         * <p><b>Note:</b> This method cannot handle
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2545
         * <a href="Character.html#supplementary"> supplementary
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2546
         * characters</a>.  To support all Unicode characters, including
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2547
         * supplementary characters, use the {@link #of(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2548
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2549
         * @param   c  The character in question
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2550
         * @return  The <code>UnicodeBlock</code> instance representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2551
         *          Unicode block of which this character is a member, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2552
         *          <code>null</code> if the character is not a member of any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2553
         *          Unicode block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2554
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2555
        public static UnicodeBlock of(char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2556
            return of((int)c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2557
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2558
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2559
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2560
         * Returns the object representing the Unicode block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2561
         * containing the given character (Unicode code point), or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2562
         * <code>null</code> if the character is not a member of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
         * defined block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
         *
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2565
         * @param   codePoint the character (Unicode code point) in question.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
         * @return  The <code>UnicodeBlock</code> instance representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
         *          Unicode block of which this character is a member, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
         *          <code>null</code> if the character is not a member of any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
         *          Unicode block
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2570
         * @exception IllegalArgumentException if the specified
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2571
         * <code>codePoint</code> is an invalid Unicode code point.
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2572
         * @see Character#isValidCodePoint(int)
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2573
         * @since   1.5
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2575
        public static UnicodeBlock of(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2576
            if (!isValidCodePoint(codePoint)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
                throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2578
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2580
            int top, bottom, current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
            bottom = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
            top = blockStarts.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
            current = top/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2584
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
            // invariant: top > current >= bottom && codePoint >= unicodeBlockStarts[bottom]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2586
            while (top - bottom > 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2587
                if (codePoint >= blockStarts[current]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
                    bottom = current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2589
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2590
                    top = current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2591
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2592
                current = (top + bottom) / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2593
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2594
            return blocks[current];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2595
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2598
         * Returns the UnicodeBlock with the given name. Block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2599
         * names are determined by The Unicode Standard. The file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
         * Blocks-&lt;version&gt;.txt defines blocks for a particular
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
         * version of the standard. The {@link Character} class specifies
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2602
         * the version of the standard that it supports.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2603
         * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2604
         * This method accepts block names in the following forms:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2605
         * <ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2606
         * <li> Canonical block names as defined by the Unicode Standard.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2607
         * For example, the standard defines a "Basic Latin" block. Therefore, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2608
         * method accepts "Basic Latin" as a valid block name. The documentation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2609
         * each UnicodeBlock provides the canonical name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2610
         * <li>Canonical block names with all spaces removed. For example, "BasicLatin"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2611
         * is a valid block name for the "Basic Latin" block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2612
         * <li>The text representation of each constant UnicodeBlock identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2613
         * For example, this method will return the {@link #BASIC_LATIN} block if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2614
         * provided with the "BASIC_LATIN" name. This form replaces all spaces and
5989
05ad44c7b244 6963749: Minor improvements to Character.UnicodeBlock
martin
parents: 5986
diff changeset
  2615
         * hyphens in the canonical name with underscores.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2616
         * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2617
         * Finally, character case is ignored for all of the valid block name forms.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2618
         * For example, "BASIC_LATIN" and "basic_latin" are both valid block names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2619
         * The en_US locale's case mapping rules are used to provide case-insensitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2620
         * string comparisons for block name validation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2621
         * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2622
         * If the Unicode Standard changes block names, both the previous and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2623
         * current names will be accepted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2624
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2625
         * @param blockName A <code>UnicodeBlock</code> name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2626
         * @return The <code>UnicodeBlock</code> instance identified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2627
         *         by <code>blockName</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2628
         * @throws IllegalArgumentException if <code>blockName</code> is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2629
         *         invalid name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2630
         * @throws NullPointerException if <code>blockName</code> is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2631
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2632
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2633
        public static final UnicodeBlock forName(String blockName) {
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  2634
            UnicodeBlock block = map.get(blockName.toUpperCase(Locale.US));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2635
            if (block == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2636
                throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2637
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2638
            return block;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2639
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2640
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2641
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2642
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2643
    /**
5610
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2644
     * A family of character subsets representing the character scripts
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2645
     * defined in the <a href="http://www.unicode.org/reports/tr24/">
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2646
     * <i>Unicode Standard Annex #24: Script Names</i></a>. Every Unicode
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2647
     * character is assigned to a single Unicode script, either a specific
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2648
     * script, such as {@link Character.UnicodeScript#LATIN Latin}, or
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2649
     * one of the following three special values,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2650
     * {@link Character.UnicodeScript#INHERITED Inherited},
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2651
     * {@link Character.UnicodeScript#COMMON Common} or
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2652
     * {@link Character.UnicodeScript#UNKNOWN Unknown}.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2653
     *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2654
     * @since 1.7
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2655
     */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2656
    public static enum UnicodeScript {
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2657
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2658
         * Unicode script "Common".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2659
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2660
        COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2661
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2662
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2663
         * Unicode script "Latin".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2664
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2665
        LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2666
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2667
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2668
         * Unicode script "Greek".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2669
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2670
        GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2671
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2672
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2673
         * Unicode script "Cyrillic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2674
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2675
        CYRILLIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2676
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2677
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2678
         * Unicode script "Armenian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2679
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2680
        ARMENIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2681
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2682
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2683
         * Unicode script "Hebrew".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2684
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2685
        HEBREW,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2686
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2687
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2688
         * Unicode script "Arabic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2689
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2690
        ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2691
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2692
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2693
         * Unicode script "Syriac".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2694
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2695
        SYRIAC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2696
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2697
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2698
         * Unicode script "Thaana".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2699
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2700
        THAANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2701
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2702
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2703
         * Unicode script "Devanagari".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2704
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2705
        DEVANAGARI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2706
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2707
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2708
         * Unicode script "Bengali".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2709
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2710
        BENGALI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2711
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2712
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2713
         * Unicode script "Gurmukhi".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2714
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2715
        GURMUKHI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2716
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2717
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2718
         * Unicode script "Gujarati".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2719
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2720
        GUJARATI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2721
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2722
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2723
         * Unicode script "Oriya".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2724
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2725
        ORIYA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2726
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2727
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2728
         * Unicode script "Tamil".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2729
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2730
        TAMIL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2731
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2732
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2733
         * Unicode script "Telugu".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2734
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2735
        TELUGU,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2736
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2737
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2738
         * Unicode script "Kannada".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2739
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2740
        KANNADA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2741
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2742
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2743
         * Unicode script "Malayalam".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2744
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2745
        MALAYALAM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2746
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2747
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2748
         * Unicode script "Sinhala".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2749
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2750
        SINHALA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2751
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2752
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2753
         * Unicode script "Thai".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2754
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2755
        THAI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2756
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2757
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2758
         * Unicode script "Lao".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2759
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2760
        LAO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2761
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2762
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2763
         * Unicode script "Tibetan".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2764
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2765
        TIBETAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2766
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2767
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2768
         * Unicode script "Myanmar".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2769
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2770
        MYANMAR,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2771
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2772
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2773
         * Unicode script "Georgian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2774
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2775
        GEORGIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2776
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2777
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2778
         * Unicode script "Hangul".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2779
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2780
        HANGUL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2781
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2782
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2783
         * Unicode script "Ethiopic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2784
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2785
        ETHIOPIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2786
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2787
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2788
         * Unicode script "Cherokee".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2789
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2790
        CHEROKEE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2791
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2792
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2793
         * Unicode script "Canadian_Aboriginal".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2794
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2795
        CANADIAN_ABORIGINAL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2796
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2797
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2798
         * Unicode script "Ogham".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2799
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2800
        OGHAM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2801
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2802
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2803
         * Unicode script "Runic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2804
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2805
        RUNIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2806
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2807
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2808
         * Unicode script "Khmer".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2809
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2810
        KHMER,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2811
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2812
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2813
         * Unicode script "Mongolian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2814
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2815
        MONGOLIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2816
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2817
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2818
         * Unicode script "Hiragana".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2819
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2820
        HIRAGANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2821
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2822
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2823
         * Unicode script "Katakana".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2824
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2825
        KATAKANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2826
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2827
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2828
         * Unicode script "Bopomofo".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2829
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2830
        BOPOMOFO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2831
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2832
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2833
         * Unicode script "Han".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2834
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2835
        HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2836
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2837
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2838
         * Unicode script "Yi".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2839
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2840
        YI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2841
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2842
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2843
         * Unicode script "Old_Italic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2844
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2845
        OLD_ITALIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2846
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2847
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2848
         * Unicode script "Gothic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2849
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2850
        GOTHIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2851
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2852
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2853
         * Unicode script "Deseret".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2854
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2855
        DESERET,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2856
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2857
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2858
         * Unicode script "Inherited".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2859
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2860
        INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2861
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2862
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2863
         * Unicode script "Tagalog".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2864
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2865
        TAGALOG,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2866
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2867
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2868
         * Unicode script "Hanunoo".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2869
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2870
        HANUNOO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2871
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2872
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2873
         * Unicode script "Buhid".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2874
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2875
        BUHID,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2876
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2877
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2878
         * Unicode script "Tagbanwa".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2879
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2880
        TAGBANWA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2881
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2882
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2883
         * Unicode script "Limbu".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2884
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2885
        LIMBU,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2886
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2887
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2888
         * Unicode script "Tai_Le".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2889
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2890
        TAI_LE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2891
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2892
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2893
         * Unicode script "Linear_B".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2894
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2895
        LINEAR_B,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2896
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2897
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2898
         * Unicode script "Ugaritic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2899
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2900
        UGARITIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2901
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2902
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2903
         * Unicode script "Shavian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2904
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2905
        SHAVIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2906
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2907
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2908
         * Unicode script "Osmanya".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2909
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2910
        OSMANYA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2911
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2912
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2913
         * Unicode script "Cypriot".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2914
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2915
        CYPRIOT,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2916
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2917
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2918
         * Unicode script "Braille".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2919
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2920
        BRAILLE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2921
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2922
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2923
         * Unicode script "Buginese".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2924
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2925
        BUGINESE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2926
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2927
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2928
         * Unicode script "Coptic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2929
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2930
        COPTIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2931
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2932
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2933
         * Unicode script "New_Tai_Lue".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2934
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2935
        NEW_TAI_LUE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2936
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2937
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2938
         * Unicode script "Glagolitic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2939
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2940
        GLAGOLITIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2941
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2942
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2943
         * Unicode script "Tifinagh".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2944
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2945
        TIFINAGH,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2946
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2947
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2948
         * Unicode script "Syloti_Nagri".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2949
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2950
        SYLOTI_NAGRI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2951
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2952
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2953
         * Unicode script "Old_Persian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2954
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2955
        OLD_PERSIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2956
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2957
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2958
         * Unicode script "Kharoshthi".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2959
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2960
        KHAROSHTHI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2961
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2962
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2963
         * Unicode script "Balinese".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2964
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2965
        BALINESE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2966
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2967
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2968
         * Unicode script "Cuneiform".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2969
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2970
        CUNEIFORM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2971
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2972
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2973
         * Unicode script "Phoenician".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2974
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2975
        PHOENICIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2976
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2977
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2978
         * Unicode script "Phags_Pa".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2979
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2980
        PHAGS_PA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2981
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2982
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2983
         * Unicode script "Nko".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2984
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2985
        NKO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2986
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2987
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2988
         * Unicode script "Sundanese".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2989
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2990
        SUNDANESE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2991
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2992
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2993
         * Unicode script "Lepcha".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2994
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2995
        LEPCHA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2996
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2997
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2998
         * Unicode script "Ol_Chiki".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  2999
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3000
        OL_CHIKI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3001
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3002
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3003
         * Unicode script "Vai".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3004
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3005
        VAI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3006
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3007
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3008
         * Unicode script "Saurashtra".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3009
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3010
        SAURASHTRA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3011
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3012
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3013
         * Unicode script "Kayah_Li".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3014
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3015
        KAYAH_LI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3016
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3017
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3018
         * Unicode script "Rejang".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3019
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3020
        REJANG,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3021
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3022
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3023
         * Unicode script "Lycian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3024
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3025
        LYCIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3026
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3027
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3028
         * Unicode script "Carian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3029
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3030
        CARIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3031
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3032
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3033
         * Unicode script "Lydian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3034
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3035
        LYDIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3036
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3037
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3038
         * Unicode script "Cham".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3039
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3040
        CHAM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3041
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3042
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3043
         * Unicode script "Tai_Tham".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3044
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3045
        TAI_THAM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3046
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3047
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3048
         * Unicode script "Tai_Viet".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3049
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3050
        TAI_VIET,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3051
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3052
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3053
         * Unicode script "Avestan".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3054
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3055
        AVESTAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3056
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3057
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3058
         * Unicode script "Egyptian_Hieroglyphs".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3059
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3060
        EGYPTIAN_HIEROGLYPHS,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3061
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3062
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3063
         * Unicode script "Samaritan".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3064
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3065
        SAMARITAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3066
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3067
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3068
         * Unicode script "Lisu".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3069
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3070
        LISU,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3071
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3072
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3073
         * Unicode script "Bamum".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3074
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3075
        BAMUM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3076
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3077
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3078
         * Unicode script "Javanese".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3079
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3080
        JAVANESE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3081
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3082
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3083
         * Unicode script "Meetei_Mayek".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3084
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3085
        MEETEI_MAYEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3086
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3087
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3088
         * Unicode script "Imperial_Aramaic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3089
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3090
        IMPERIAL_ARAMAIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3091
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3092
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3093
         * Unicode script "Old_South_Arabian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3094
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3095
        OLD_SOUTH_ARABIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3096
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3097
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3098
         * Unicode script "Inscriptional_Parthian".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3099
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3100
        INSCRIPTIONAL_PARTHIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3101
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3102
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3103
         * Unicode script "Inscriptional_Pahlavi".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3104
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3105
        INSCRIPTIONAL_PAHLAVI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3106
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3107
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3108
         * Unicode script "Old_Turkic".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3109
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3110
        OLD_TURKIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3111
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3112
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3113
         * Unicode script "Kaithi".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3114
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3115
        KAITHI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3116
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3117
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3118
         * Unicode script "Unknown".
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3119
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3120
        UNKNOWN;
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3121
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3122
        private static final int[] scriptStarts = {
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3123
            0x0000,   // 0000..0040; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3124
            0x0041,   // 0041..005A; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3125
            0x005B,   // 005B..0060; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3126
            0x0061,   // 0061..007A; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3127
            0x007B,   // 007B..00A9; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3128
            0x00AA,   // 00AA..00AA; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3129
            0x00AB,   // 00AB..00B9; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3130
            0x00BA,   // 00BA..00BA; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3131
            0x00BB,   // 00BB..00BF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3132
            0x00C0,   // 00C0..00D6; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3133
            0x00D7,   // 00D7..00D7; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3134
            0x00D8,   // 00D8..00F6; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3135
            0x00F7,   // 00F7..00F7; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3136
            0x00F8,   // 00F8..02B8; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3137
            0x02B9,   // 02B9..02DF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3138
            0x02E0,   // 02E0..02E4; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3139
            0x02E5,   // 02E5..02FF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3140
            0x0300,   // 0300..036F; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3141
            0x0370,   // 0370..0373; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3142
            0x0374,   // 0374..0374; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3143
            0x0375,   // 0375..037D; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3144
            0x037E,   // 037E..0383; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3145
            0x0384,   // 0384..0384; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3146
            0x0385,   // 0385..0385; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3147
            0x0386,   // 0386..0386; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3148
            0x0387,   // 0387..0387; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3149
            0x0388,   // 0388..03E1; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3150
            0x03E2,   // 03E2..03EF; COPTIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3151
            0x03F0,   // 03F0..03FF; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3152
            0x0400,   // 0400..0484; CYRILLIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3153
            0x0485,   // 0485..0486; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3154
            0x0487,   // 0487..0530; CYRILLIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3155
            0x0531,   // 0531..0588; ARMENIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3156
            0x0589,   // 0589..0589; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3157
            0x058A,   // 058A..0590; ARMENIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3158
            0x0591,   // 0591..05FF; HEBREW
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3159
            0x0600,   // 0600..0605; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3160
            0x0606,   // 0606..060B; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3161
            0x060C,   // 060C..060C; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3162
            0x060D,   // 060D..061A; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3163
            0x061B,   // 061B..061D; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3164
            0x061E,   // 061E..061E; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3165
            0x061F,   // 061F..0620; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3166
            0x0621,   // 0621..063F; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3167
            0x0640,   // 0640..0640; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3168
            0x0641,   // 0641..064A; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3169
            0x064B,   // 064B..0655; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3170
            0x0656,   // 0656..065F; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3171
            0x0660,   // 0660..0669; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3172
            0x066A,   // 066A..066F; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3173
            0x0670,   // 0670..0670; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3174
            0x0671,   // 0671..06DC; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3175
            0x06DD,   // 06DD..06DD; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3176
            0x06DE,   // 06DE..06FF; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3177
            0x0700,   // 0700..074F; SYRIAC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3178
            0x0750,   // 0750..077F; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3179
            0x0780,   // 0780..07BF; THAANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3180
            0x07C0,   // 07C0..07FF; NKO
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3181
            0x0800,   // 0800..08FF; SAMARITAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3182
            0x0900,   // 0900..0950; DEVANAGARI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3183
            0x0951,   // 0951..0952; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3184
            0x0953,   // 0953..0963; DEVANAGARI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3185
            0x0964,   // 0964..0965; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3186
            0x0966,   // 0966..096F; DEVANAGARI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3187
            0x0970,   // 0970..0970; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3188
            0x0971,   // 0971..0980; DEVANAGARI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3189
            0x0981,   // 0981..0A00; BENGALI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3190
            0x0A01,   // 0A01..0A80; GURMUKHI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3191
            0x0A81,   // 0A81..0B00; GUJARATI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3192
            0x0B01,   // 0B01..0B81; ORIYA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3193
            0x0B82,   // 0B82..0C00; TAMIL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3194
            0x0C01,   // 0C01..0C81; TELUGU
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3195
            0x0C82,   // 0C82..0CF0; KANNADA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3196
            0x0CF1,   // 0CF1..0D01; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3197
            0x0D02,   // 0D02..0D81; MALAYALAM
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3198
            0x0D82,   // 0D82..0E00; SINHALA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3199
            0x0E01,   // 0E01..0E3E; THAI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3200
            0x0E3F,   // 0E3F..0E3F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3201
            0x0E40,   // 0E40..0E80; THAI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3202
            0x0E81,   // 0E81..0EFF; LAO
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3203
            0x0F00,   // 0F00..0FD4; TIBETAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3204
            0x0FD5,   // 0FD5..0FFF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3205
            0x1000,   // 1000..109F; MYANMAR
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3206
            0x10A0,   // 10A0..10FA; GEORGIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3207
            0x10FB,   // 10FB..10FB; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3208
            0x10FC,   // 10FC..10FF; GEORGIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3209
            0x1100,   // 1100..11FF; HANGUL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3210
            0x1200,   // 1200..139F; ETHIOPIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3211
            0x13A0,   // 13A0..13FF; CHEROKEE
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3212
            0x1400,   // 1400..167F; CANADIAN_ABORIGINAL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3213
            0x1680,   // 1680..169F; OGHAM
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3214
            0x16A0,   // 16A0..16EA; RUNIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3215
            0x16EB,   // 16EB..16ED; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3216
            0x16EE,   // 16EE..16FF; RUNIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3217
            0x1700,   // 1700..171F; TAGALOG
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3218
            0x1720,   // 1720..1734; HANUNOO
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3219
            0x1735,   // 1735..173F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3220
            0x1740,   // 1740..175F; BUHID
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3221
            0x1760,   // 1760..177F; TAGBANWA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3222
            0x1780,   // 1780..17FF; KHMER
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3223
            0x1800,   // 1800..1801; MONGOLIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3224
            0x1802,   // 1802..1803; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3225
            0x1804,   // 1804..1804; MONGOLIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3226
            0x1805,   // 1805..1805; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3227
            0x1806,   // 1806..18AF; MONGOLIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3228
            0x18B0,   // 18B0..18FF; CANADIAN_ABORIGINAL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3229
            0x1900,   // 1900..194F; LIMBU
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3230
            0x1950,   // 1950..197F; TAI_LE
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3231
            0x1980,   // 1980..19DF; NEW_TAI_LUE
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3232
            0x19E0,   // 19E0..19FF; KHMER
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3233
            0x1A00,   // 1A00..1A1F; BUGINESE
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3234
            0x1A20,   // 1A20..1AFF; TAI_THAM
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3235
            0x1B00,   // 1B00..1B7F; BALINESE
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3236
            0x1B80,   // 1B80..1BFF; SUNDANESE
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3237
            0x1C00,   // 1C00..1C4F; LEPCHA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3238
            0x1C50,   // 1C50..1CCF; OL_CHIKI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3239
            0x1CD0,   // 1CD0..1CD2; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3240
            0x1CD3,   // 1CD3..1CD3; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3241
            0x1CD4,   // 1CD4..1CE0; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3242
            0x1CE1,   // 1CE1..1CE1; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3243
            0x1CE2,   // 1CE2..1CE8; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3244
            0x1CE9,   // 1CE9..1CEC; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3245
            0x1CED,   // 1CED..1CED; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3246
            0x1CEE,   // 1CEE..1CFF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3247
            0x1D00,   // 1D00..1D25; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3248
            0x1D26,   // 1D26..1D2A; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3249
            0x1D2B,   // 1D2B..1D2B; CYRILLIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3250
            0x1D2C,   // 1D2C..1D5C; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3251
            0x1D5D,   // 1D5D..1D61; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3252
            0x1D62,   // 1D62..1D65; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3253
            0x1D66,   // 1D66..1D6A; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3254
            0x1D6B,   // 1D6B..1D77; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3255
            0x1D78,   // 1D78..1D78; CYRILLIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3256
            0x1D79,   // 1D79..1DBE; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3257
            0x1DBF,   // 1DBF..1DBF; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3258
            0x1DC0,   // 1DC0..1DFF; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3259
            0x1E00,   // 1E00..1EFF; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3260
            0x1F00,   // 1F00..1FFF; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3261
            0x2000,   // 2000..200B; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3262
            0x200C,   // 200C..200D; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3263
            0x200E,   // 200E..2070; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3264
            0x2071,   // 2071..2073; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3265
            0x2074,   // 2074..207E; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3266
            0x207F,   // 207F..207F; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3267
            0x2080,   // 2080..208F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3268
            0x2090,   // 2090..209F; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3269
            0x20A0,   // 20A0..20CF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3270
            0x20D0,   // 20D0..20FF; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3271
            0x2100,   // 2100..2125; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3272
            0x2126,   // 2126..2126; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3273
            0x2127,   // 2127..2129; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3274
            0x212A,   // 212A..212B; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3275
            0x212C,   // 212C..2131; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3276
            0x2132,   // 2132..2132; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3277
            0x2133,   // 2133..214D; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3278
            0x214E,   // 214E..214E; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3279
            0x214F,   // 214F..215F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3280
            0x2160,   // 2160..2188; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3281
            0x2189,   // 2189..27FF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3282
            0x2800,   // 2800..28FF; BRAILLE
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3283
            0x2900,   // 2900..2BFF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3284
            0x2C00,   // 2C00..2C5F; GLAGOLITIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3285
            0x2C60,   // 2C60..2C7F; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3286
            0x2C80,   // 2C80..2CFF; COPTIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3287
            0x2D00,   // 2D00..2D2F; GEORGIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3288
            0x2D30,   // 2D30..2D7F; TIFINAGH
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3289
            0x2D80,   // 2D80..2DDF; ETHIOPIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3290
            0x2DE0,   // 2DE0..2DFF; CYRILLIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3291
            0x2E00,   // 2E00..2E7F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3292
            0x2E80,   // 2E80..2FEF; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3293
            0x2FF0,   // 2FF0..3004; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3294
            0x3005,   // 3005..3005; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3295
            0x3006,   // 3006..3006; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3296
            0x3007,   // 3007..3007; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3297
            0x3008,   // 3008..3020; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3298
            0x3021,   // 3021..3029; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3299
            0x302A,   // 302A..302F; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3300
            0x3030,   // 3030..3037; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3301
            0x3038,   // 3038..303B; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3302
            0x303C,   // 303C..3040; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3303
            0x3041,   // 3041..3098; HIRAGANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3304
            0x3099,   // 3099..309A; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3305
            0x309B,   // 309B..309C; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3306
            0x309D,   // 309D..309F; HIRAGANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3307
            0x30A0,   // 30A0..30A0; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3308
            0x30A1,   // 30A1..30FA; KATAKANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3309
            0x30FB,   // 30FB..30FC; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3310
            0x30FD,   // 30FD..3104; KATAKANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3311
            0x3105,   // 3105..3130; BOPOMOFO
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3312
            0x3131,   // 3131..318F; HANGUL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3313
            0x3190,   // 3190..319F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3314
            0x31A0,   // 31A0..31BF; BOPOMOFO
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3315
            0x31C0,   // 31C0..31EF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3316
            0x31F0,   // 31F0..31FF; KATAKANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3317
            0x3200,   // 3200..321F; HANGUL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3318
            0x3220,   // 3220..325F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3319
            0x3260,   // 3260..327E; HANGUL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3320
            0x327F,   // 327F..32CF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3321
            0x32D0,   // 32D0..3357; KATAKANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3322
            0x3358,   // 3358..33FF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3323
            0x3400,   // 3400..4DBF; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3324
            0x4DC0,   // 4DC0..4DFF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3325
            0x4E00,   // 4E00..9FFF; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3326
            0xA000,   // A000..A4CF; YI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3327
            0xA4D0,   // A4D0..A4FF; LISU
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3328
            0xA500,   // A500..A63F; VAI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3329
            0xA640,   // A640..A69F; CYRILLIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3330
            0xA6A0,   // A6A0..A6FF; BAMUM
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3331
            0xA700,   // A700..A721; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3332
            0xA722,   // A722..A787; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3333
            0xA788,   // A788..A78A; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3334
            0xA78B,   // A78B..A7FF; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3335
            0xA800,   // A800..A82F; SYLOTI_NAGRI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3336
            0xA830,   // A830..A83F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3337
            0xA840,   // A840..A87F; PHAGS_PA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3338
            0xA880,   // A880..A8DF; SAURASHTRA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3339
            0xA8E0,   // A8E0..A8FF; DEVANAGARI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3340
            0xA900,   // A900..A92F; KAYAH_LI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3341
            0xA930,   // A930..A95F; REJANG
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3342
            0xA960,   // A960..A97F; HANGUL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3343
            0xA980,   // A980..A9FF; JAVANESE
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3344
            0xAA00,   // AA00..AA5F; CHAM
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3345
            0xAA60,   // AA60..AA7F; MYANMAR
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3346
            0xAA80,   // AA80..ABBF; TAI_VIET
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3347
            0xABC0,   // ABC0..ABFF; MEETEI_MAYEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3348
            0xAC00,   // AC00..D7FB; HANGUL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3349
            0xD7FC,   // D7FC..F8FF; UNKNOWN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3350
            0xF900,   // F900..FAFF; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3351
            0xFB00,   // FB00..FB12; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3352
            0xFB13,   // FB13..FB1C; ARMENIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3353
            0xFB1D,   // FB1D..FB4F; HEBREW
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3354
            0xFB50,   // FB50..FD3D; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3355
            0xFD3E,   // FD3E..FD4F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3356
            0xFD50,   // FD50..FDFC; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3357
            0xFDFD,   // FDFD..FDFF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3358
            0xFE00,   // FE00..FE0F; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3359
            0xFE10,   // FE10..FE1F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3360
            0xFE20,   // FE20..FE2F; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3361
            0xFE30,   // FE30..FE6F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3362
            0xFE70,   // FE70..FEFE; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3363
            0xFEFF,   // FEFF..FF20; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3364
            0xFF21,   // FF21..FF3A; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3365
            0xFF3B,   // FF3B..FF40; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3366
            0xFF41,   // FF41..FF5A; LATIN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3367
            0xFF5B,   // FF5B..FF65; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3368
            0xFF66,   // FF66..FF6F; KATAKANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3369
            0xFF70,   // FF70..FF70; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3370
            0xFF71,   // FF71..FF9D; KATAKANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3371
            0xFF9E,   // FF9E..FF9F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3372
            0xFFA0,   // FFA0..FFDF; HANGUL
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3373
            0xFFE0,   // FFE0..FFFF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3374
            0x10000,  // 10000..100FF; LINEAR_B
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3375
            0x10100,  // 10100..1013F; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3376
            0x10140,  // 10140..1018F; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3377
            0x10190,  // 10190..101FC; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3378
            0x101FD,  // 101FD..1027F; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3379
            0x10280,  // 10280..1029F; LYCIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3380
            0x102A0,  // 102A0..102FF; CARIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3381
            0x10300,  // 10300..1032F; OLD_ITALIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3382
            0x10330,  // 10330..1037F; GOTHIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3383
            0x10380,  // 10380..1039F; UGARITIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3384
            0x103A0,  // 103A0..103FF; OLD_PERSIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3385
            0x10400,  // 10400..1044F; DESERET
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3386
            0x10450,  // 10450..1047F; SHAVIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3387
            0x10480,  // 10480..107FF; OSMANYA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3388
            0x10800,  // 10800..1083F; CYPRIOT
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3389
            0x10840,  // 10840..108FF; IMPERIAL_ARAMAIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3390
            0x10900,  // 10900..1091F; PHOENICIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3391
            0x10920,  // 10920..109FF; LYDIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3392
            0x10A00,  // 10A00..10A5F; KHAROSHTHI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3393
            0x10A60,  // 10A60..10AFF; OLD_SOUTH_ARABIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3394
            0x10B00,  // 10B00..10B3F; AVESTAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3395
            0x10B40,  // 10B40..10B5F; INSCRIPTIONAL_PARTHIAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3396
            0x10B60,  // 10B60..10BFF; INSCRIPTIONAL_PAHLAVI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3397
            0x10C00,  // 10C00..10E5F; OLD_TURKIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3398
            0x10E60,  // 10E60..1107F; ARABIC
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3399
            0x11080,  // 11080..11FFF; KAITHI
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3400
            0x12000,  // 12000..12FFF; CUNEIFORM
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3401
            0x13000,  // 13000..1CFFF; EGYPTIAN_HIEROGLYPHS
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3402
            0x1D000,  // 1D000..1D166; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3403
            0x1D167,  // 1D167..1D169; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3404
            0x1D16A,  // 1D16A..1D17A; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3405
            0x1D17B,  // 1D17B..1D182; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3406
            0x1D183,  // 1D183..1D184; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3407
            0x1D185,  // 1D185..1D18B; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3408
            0x1D18C,  // 1D18C..1D1A9; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3409
            0x1D1AA,  // 1D1AA..1D1AD; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3410
            0x1D1AE,  // 1D1AE..1D1FF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3411
            0x1D200,  // 1D200..1D2FF; GREEK
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3412
            0x1D300,  // 1D300..1F1FF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3413
            0x1F200,  // 1F200..1F20F; HIRAGANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3414
            0x1F210,  // 1F210..1FFFF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3415
            0x20000,  // 20000..E0000; HAN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3416
            0xE0001,  // E0001..E00FF; COMMON
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3417
            0xE0100,  // E0100..E01EF; INHERITED
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3418
            0xE01F0   // E01F0..10FFFF; UNKNOWN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3419
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3420
        };
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3421
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3422
        private static final UnicodeScript[] scripts = {
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3423
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3424
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3425
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3426
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3427
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3428
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3429
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3430
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3431
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3432
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3433
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3434
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3435
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3436
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3437
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3438
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3439
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3440
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3441
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3442
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3443
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3444
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3445
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3446
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3447
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3448
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3449
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3450
            COPTIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3451
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3452
            CYRILLIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3453
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3454
            CYRILLIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3455
            ARMENIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3456
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3457
            ARMENIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3458
            HEBREW,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3459
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3460
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3461
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3462
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3463
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3464
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3465
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3466
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3467
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3468
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3469
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3470
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3471
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3472
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3473
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3474
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3475
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3476
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3477
            SYRIAC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3478
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3479
            THAANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3480
            NKO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3481
            SAMARITAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3482
            DEVANAGARI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3483
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3484
            DEVANAGARI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3485
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3486
            DEVANAGARI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3487
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3488
            DEVANAGARI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3489
            BENGALI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3490
            GURMUKHI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3491
            GUJARATI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3492
            ORIYA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3493
            TAMIL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3494
            TELUGU,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3495
            KANNADA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3496
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3497
            MALAYALAM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3498
            SINHALA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3499
            THAI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3500
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3501
            THAI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3502
            LAO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3503
            TIBETAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3504
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3505
            MYANMAR,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3506
            GEORGIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3507
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3508
            GEORGIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3509
            HANGUL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3510
            ETHIOPIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3511
            CHEROKEE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3512
            CANADIAN_ABORIGINAL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3513
            OGHAM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3514
            RUNIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3515
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3516
            RUNIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3517
            TAGALOG,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3518
            HANUNOO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3519
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3520
            BUHID,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3521
            TAGBANWA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3522
            KHMER,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3523
            MONGOLIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3524
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3525
            MONGOLIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3526
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3527
            MONGOLIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3528
            CANADIAN_ABORIGINAL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3529
            LIMBU,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3530
            TAI_LE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3531
            NEW_TAI_LUE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3532
            KHMER,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3533
            BUGINESE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3534
            TAI_THAM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3535
            BALINESE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3536
            SUNDANESE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3537
            LEPCHA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3538
            OL_CHIKI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3539
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3540
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3541
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3542
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3543
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3544
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3545
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3546
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3547
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3548
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3549
            CYRILLIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3550
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3551
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3552
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3553
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3554
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3555
            CYRILLIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3556
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3557
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3558
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3559
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3560
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3561
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3562
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3563
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3564
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3565
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3566
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3567
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3568
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3569
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3570
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3571
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3572
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3573
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3574
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3575
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3576
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3577
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3578
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3579
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3580
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3581
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3582
            BRAILLE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3583
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3584
            GLAGOLITIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3585
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3586
            COPTIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3587
            GEORGIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3588
            TIFINAGH,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3589
            ETHIOPIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3590
            CYRILLIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3591
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3592
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3593
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3594
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3595
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3596
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3597
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3598
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3599
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3600
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3601
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3602
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3603
            HIRAGANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3604
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3605
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3606
            HIRAGANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3607
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3608
            KATAKANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3609
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3610
            KATAKANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3611
            BOPOMOFO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3612
            HANGUL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3613
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3614
            BOPOMOFO,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3615
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3616
            KATAKANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3617
            HANGUL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3618
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3619
            HANGUL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3620
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3621
            KATAKANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3622
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3623
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3624
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3625
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3626
            YI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3627
            LISU,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3628
            VAI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3629
            CYRILLIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3630
            BAMUM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3631
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3632
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3633
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3634
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3635
            SYLOTI_NAGRI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3636
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3637
            PHAGS_PA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3638
            SAURASHTRA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3639
            DEVANAGARI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3640
            KAYAH_LI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3641
            REJANG,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3642
            HANGUL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3643
            JAVANESE,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3644
            CHAM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3645
            MYANMAR,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3646
            TAI_VIET,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3647
            MEETEI_MAYEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3648
            HANGUL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3649
            UNKNOWN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3650
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3651
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3652
            ARMENIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3653
            HEBREW,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3654
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3655
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3656
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3657
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3658
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3659
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3660
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3661
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3662
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3663
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3664
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3665
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3666
            LATIN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3667
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3668
            KATAKANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3669
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3670
            KATAKANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3671
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3672
            HANGUL,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3673
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3674
            LINEAR_B,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3675
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3676
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3677
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3678
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3679
            LYCIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3680
            CARIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3681
            OLD_ITALIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3682
            GOTHIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3683
            UGARITIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3684
            OLD_PERSIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3685
            DESERET,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3686
            SHAVIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3687
            OSMANYA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3688
            CYPRIOT,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3689
            IMPERIAL_ARAMAIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3690
            PHOENICIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3691
            LYDIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3692
            KHAROSHTHI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3693
            OLD_SOUTH_ARABIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3694
            AVESTAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3695
            INSCRIPTIONAL_PARTHIAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3696
            INSCRIPTIONAL_PAHLAVI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3697
            OLD_TURKIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3698
            ARABIC,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3699
            KAITHI,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3700
            CUNEIFORM,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3701
            EGYPTIAN_HIEROGLYPHS,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3702
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3703
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3704
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3705
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3706
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3707
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3708
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3709
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3710
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3711
            GREEK,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3712
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3713
            HIRAGANA,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3714
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3715
            HAN,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3716
            COMMON,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3717
            INHERITED,
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3718
            UNKNOWN
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3719
        };
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3720
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3721
        private static HashMap<String, Character.UnicodeScript> aliases;
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3722
        static {
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  3723
            aliases = new HashMap<String, UnicodeScript>(128);
5610
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3724
            aliases.put("ARAB", ARABIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3725
            aliases.put("ARMI", IMPERIAL_ARAMAIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3726
            aliases.put("ARMN", ARMENIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3727
            aliases.put("AVST", AVESTAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3728
            aliases.put("BALI", BALINESE);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3729
            aliases.put("BAMU", BAMUM);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3730
            aliases.put("BENG", BENGALI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3731
            aliases.put("BOPO", BOPOMOFO);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3732
            aliases.put("BRAI", BRAILLE);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3733
            aliases.put("BUGI", BUGINESE);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3734
            aliases.put("BUHD", BUHID);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3735
            aliases.put("CANS", CANADIAN_ABORIGINAL);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3736
            aliases.put("CARI", CARIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3737
            aliases.put("CHAM", CHAM);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3738
            aliases.put("CHER", CHEROKEE);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3739
            aliases.put("COPT", COPTIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3740
            aliases.put("CPRT", CYPRIOT);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3741
            aliases.put("CYRL", CYRILLIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3742
            aliases.put("DEVA", DEVANAGARI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3743
            aliases.put("DSRT", DESERET);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3744
            aliases.put("EGYP", EGYPTIAN_HIEROGLYPHS);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3745
            aliases.put("ETHI", ETHIOPIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3746
            aliases.put("GEOR", GEORGIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3747
            aliases.put("GLAG", GLAGOLITIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3748
            aliases.put("GOTH", GOTHIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3749
            aliases.put("GREK", GREEK);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3750
            aliases.put("GUJR", GUJARATI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3751
            aliases.put("GURU", GURMUKHI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3752
            aliases.put("HANG", HANGUL);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3753
            aliases.put("HANI", HAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3754
            aliases.put("HANO", HANUNOO);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3755
            aliases.put("HEBR", HEBREW);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3756
            aliases.put("HIRA", HIRAGANA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3757
            // it appears we don't have the KATAKANA_OR_HIRAGANA
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3758
            //aliases.put("HRKT", KATAKANA_OR_HIRAGANA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3759
            aliases.put("ITAL", OLD_ITALIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3760
            aliases.put("JAVA", JAVANESE);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3761
            aliases.put("KALI", KAYAH_LI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3762
            aliases.put("KANA", KATAKANA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3763
            aliases.put("KHAR", KHAROSHTHI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3764
            aliases.put("KHMR", KHMER);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3765
            aliases.put("KNDA", KANNADA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3766
            aliases.put("KTHI", KAITHI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3767
            aliases.put("LANA", TAI_THAM);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3768
            aliases.put("LAOO", LAO);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3769
            aliases.put("LATN", LATIN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3770
            aliases.put("LEPC", LEPCHA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3771
            aliases.put("LIMB", LIMBU);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3772
            aliases.put("LINB", LINEAR_B);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3773
            aliases.put("LISU", LISU);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3774
            aliases.put("LYCI", LYCIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3775
            aliases.put("LYDI", LYDIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3776
            aliases.put("MLYM", MALAYALAM);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3777
            aliases.put("MONG", MONGOLIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3778
            aliases.put("MTEI", MEETEI_MAYEK);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3779
            aliases.put("MYMR", MYANMAR);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3780
            aliases.put("NKOO", NKO);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3781
            aliases.put("OGAM", OGHAM);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3782
            aliases.put("OLCK", OL_CHIKI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3783
            aliases.put("ORKH", OLD_TURKIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3784
            aliases.put("ORYA", ORIYA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3785
            aliases.put("OSMA", OSMANYA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3786
            aliases.put("PHAG", PHAGS_PA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3787
            aliases.put("PHLI", INSCRIPTIONAL_PAHLAVI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3788
            aliases.put("PHNX", PHOENICIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3789
            aliases.put("PRTI", INSCRIPTIONAL_PARTHIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3790
            aliases.put("RJNG", REJANG);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3791
            aliases.put("RUNR", RUNIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3792
            aliases.put("SAMR", SAMARITAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3793
            aliases.put("SARB", OLD_SOUTH_ARABIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3794
            aliases.put("SAUR", SAURASHTRA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3795
            aliases.put("SHAW", SHAVIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3796
            aliases.put("SINH", SINHALA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3797
            aliases.put("SUND", SUNDANESE);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3798
            aliases.put("SYLO", SYLOTI_NAGRI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3799
            aliases.put("SYRC", SYRIAC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3800
            aliases.put("TAGB", TAGBANWA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3801
            aliases.put("TALE", TAI_LE);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3802
            aliases.put("TALU", NEW_TAI_LUE);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3803
            aliases.put("TAML", TAMIL);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3804
            aliases.put("TAVT", TAI_VIET);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3805
            aliases.put("TELU", TELUGU);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3806
            aliases.put("TFNG", TIFINAGH);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3807
            aliases.put("TGLG", TAGALOG);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3808
            aliases.put("THAA", THAANA);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3809
            aliases.put("THAI", THAI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3810
            aliases.put("TIBT", TIBETAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3811
            aliases.put("UGAR", UGARITIC);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3812
            aliases.put("VAII", VAI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3813
            aliases.put("XPEO", OLD_PERSIAN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3814
            aliases.put("XSUX", CUNEIFORM);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3815
            aliases.put("YIII", YI);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3816
            aliases.put("ZINH", INHERITED);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3817
            aliases.put("ZYYY", COMMON);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3818
            aliases.put("ZZZZ", UNKNOWN);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3819
        }
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3820
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3821
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3822
         * Returns the enum constant representing the Unicode script of which
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3823
         * the given character (Unicode code point) is assigned to.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3824
         *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3825
         * @param   codePoint the character (Unicode code point) in question.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3826
         * @return  The <code>UnicodeScript</code> constant representing the
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3827
         *          Unicode script of which this character is assigned to.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3828
         *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3829
         * @exception IllegalArgumentException if the specified
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3830
         * <code>codePoint</code> is an invalid Unicode code point.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3831
         * @see Character#isValidCodePoint(int)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3832
         *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3833
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3834
        public static UnicodeScript of(int codePoint) {
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3835
            if (!isValidCodePoint(codePoint))
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3836
                throw new IllegalArgumentException();
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3837
            int type = getType(codePoint);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3838
            // leave SURROGATE and PRIVATE_USE for table lookup
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3839
            if (type == UNASSIGNED)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3840
                return UNKNOWN;
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3841
            int index = Arrays.binarySearch(scriptStarts, codePoint);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3842
            if (index < 0)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3843
                index = -index - 2;
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3844
            return scripts[index];
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3845
        }
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3846
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3847
        /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3848
         * Returns the UnicodeScript constant with the given Unicode script
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3849
         * name or the script name alias. Script names and their aliases are
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3850
         * determined by The Unicode Standard. The files Scripts&lt;version&gt;.txt
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3851
         * and PropertyValueAliases&lt;version&gt;.txt define script names
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3852
         * and the script name aliases for a particular version of the
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3853
         * standard. The {@link Character} class specifies the version of
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3854
         * the standard that it supports.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3855
         * <p>
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3856
         * Character case is ignored for all of the valid script names.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3857
         * The en_US locale's case mapping rules are used to provide
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3858
         * case-insensitive string comparisons for script name validation.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3859
         * <p>
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3860
         *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3861
         * @param scriptName A <code>UnicodeScript</code> name.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3862
         * @return The <code>UnicodeScript</code> constant identified
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3863
         *         by <code>scriptName</code>
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3864
         * @throws IllegalArgumentException if <code>scriptName</code> is an
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3865
         *         invalid name
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3866
         * @throws NullPointerException if <code>scriptName</code> is null
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3867
         */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3868
        public static final UnicodeScript forName(String scriptName) {
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3869
            scriptName = scriptName.toUpperCase(Locale.ENGLISH);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3870
                                 //.replace(' ', '_'));
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3871
            UnicodeScript sc = aliases.get(scriptName);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3872
            if (sc != null)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3873
                return sc;
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3874
            return valueOf(scriptName);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3875
        }
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3876
    }
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3877
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  3878
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3879
     * The value of the <code>Character</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3880
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3881
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3882
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3883
    private final char value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3884
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3885
    /** use serialVersionUID from JDK 1.0.2 for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3886
    private static final long serialVersionUID = 3786198910865385080L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3887
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3888
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3889
     * Constructs a newly allocated <code>Character</code> object that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3890
     * represents the specified <code>char</code> value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3891
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3892
     * @param  value   the value to be represented by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3893
     *                  <code>Character</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3894
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3895
    public Character(char value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3896
        this.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3897
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3898
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3899
    private static class CharacterCache {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3900
        private CharacterCache(){}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3901
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3902
        static final Character cache[] = new Character[127 + 1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3903
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3904
        static {
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  3905
            for (int i = 0; i < cache.length; i++)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3906
                cache[i] = new Character((char)i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3907
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3908
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3909
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3910
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3911
     * Returns a <tt>Character</tt> instance representing the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3912
     * <tt>char</tt> value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3913
     * If a new <tt>Character</tt> instance is not required, this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3914
     * should generally be used in preference to the constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3915
     * {@link #Character(char)}, as this method is likely to yield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3916
     * significantly better space and time performance by caching
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3917
     * frequently requested values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3918
     *
3719
b00a1e55ec44 6879368: Remove stray quote in Character javadoc
martin
parents: 3714
diff changeset
  3919
     * This method will always cache values in the range {@code
b00a1e55ec44 6879368: Remove stray quote in Character javadoc
martin
parents: 3714
diff changeset
  3920
     * '\u005Cu0000'} to {@code '\u005Cu007f'}, inclusive, and may
b00a1e55ec44 6879368: Remove stray quote in Character javadoc
martin
parents: 3714
diff changeset
  3921
     * cache other values outside of this range.
3224
3aa65803ae07 6628737: Specification of wrapper class valueOf static factories should require caching
darcy
parents: 2497
diff changeset
  3922
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3923
     * @param  c a char value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3924
     * @return a <tt>Character</tt> instance representing <tt>c</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3925
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3926
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3927
    public static Character valueOf(char c) {
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  3928
        if (c <= 127) { // must cache
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3929
            return CharacterCache.cache[(int)c];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3930
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3931
        return new Character(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3932
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3933
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3934
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3935
     * Returns the value of this <code>Character</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3936
     * @return  the primitive <code>char</code> value represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3937
     *          this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3938
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3939
    public char charValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3940
        return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3941
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3942
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3943
    /**
3942
685e04a98396 4245470: algorithm of java.lang.Byte.hashCode() is not specified
martin
parents: 3719
diff changeset
  3944
     * Returns a hash code for this {@code Character}; equal to the result
685e04a98396 4245470: algorithm of java.lang.Byte.hashCode() is not specified
martin
parents: 3719
diff changeset
  3945
     * of invoking {@code charValue()}.
685e04a98396 4245470: algorithm of java.lang.Byte.hashCode() is not specified
martin
parents: 3719
diff changeset
  3946
     *
685e04a98396 4245470: algorithm of java.lang.Byte.hashCode() is not specified
martin
parents: 3719
diff changeset
  3947
     * @return a hash code value for this {@code Character}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3948
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3949
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3950
        return (int)value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3951
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3952
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3953
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3954
     * Compares this object against the specified object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3955
     * The result is <code>true</code> if and only if the argument is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3956
     * <code>null</code> and is a <code>Character</code> object that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3957
     * represents the same <code>char</code> value as this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3958
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3959
     * @param   obj   the object to compare with.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3960
     * @return  <code>true</code> if the objects are the same;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3961
     *          <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3962
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3963
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3964
        if (obj instanceof Character) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3965
            return value == ((Character)obj).charValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3966
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3967
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3968
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3969
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3970
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3971
     * Returns a <code>String</code> object representing this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3972
     * <code>Character</code>'s value.  The result is a string of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3973
     * length 1 whose sole component is the primitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3974
     * <code>char</code> value represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3975
     * <code>Character</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3976
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3977
     * @return  a string representation of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3978
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3979
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3980
        char buf[] = {value};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3981
        return String.valueOf(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3982
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3983
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3984
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3985
     * Returns a <code>String</code> object representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3986
     * specified <code>char</code>.  The result is a string of length
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3987
     * 1 consisting solely of the specified <code>char</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3988
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3989
     * @param c the <code>char</code> to be converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3990
     * @return the string representation of the specified <code>char</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3991
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3992
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3993
    public static String toString(char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3994
        return String.valueOf(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3995
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3996
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3997
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  3998
     * Determines whether the specified code point is a valid
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  3999
     * <a href="http://www.unicode.org/glossary/#code_point">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4000
     * Unicode code point value</a>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4001
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4002
     * @param  codePoint the Unicode code point to be tested
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4003
     * @return {@code true} if the specified code point value is between
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4004
     *         {@link #MIN_CODE_POINT} and
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4005
     *         {@link #MAX_CODE_POINT} inclusive;
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4006
     *         {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4007
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4008
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4009
    public static boolean isValidCodePoint(int codePoint) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4010
        // Optimized form of:
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4011
        //     codePoint >= MIN_CODE_POINT && codePoint <= MAX_CODE_POINT
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4012
        int plane = codePoint >>> 16;
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4013
        return plane < ((MAX_CODE_POINT + 1) >>> 16);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4014
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4016
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4017
     * Determines whether the specified character (Unicode code point)
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4018
     * is in the <a href="#BMP">Basic Multilingual Plane (BMP)</a>.
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4019
     * Such code points can be represented using a single {@code char}.
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4020
     *
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4021
     * @param  codePoint the character (Unicode code point) to be tested
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4022
     * @return {@code true} if the specified code point is between
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4023
     *         {@link #MIN_VALUE} and {@link #MAX_VALUE} inclusive;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4024
     *         {@code false} otherwise.
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4025
     * @since  1.7
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4026
     */
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4027
    public static boolean isBmpCodePoint(int codePoint) {
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4028
        return codePoint >>> 16 == 0;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4029
        // Optimized form of:
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4030
        //     codePoint >= MIN_VALUE && codePoint <= MAX_VALUE
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4031
        // We consistently use logical shift (>>>) to facilitate
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4032
        // additional runtime optimizations.
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4033
    }
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4034
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4035
    /**
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4036
     * Determines whether the specified character (Unicode code point)
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4037
     * is in the <a href="#supplementary">supplementary character</a> range.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4038
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4039
     * @param  codePoint the character (Unicode code point) to be tested
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4040
     * @return {@code true} if the specified code point is between
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4041
     *         {@link #MIN_SUPPLEMENTARY_CODE_POINT} and
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4042
     *         {@link #MAX_CODE_POINT} inclusive;
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4043
     *         {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4044
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4045
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4046
    public static boolean isSupplementaryCodePoint(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4047
        return codePoint >= MIN_SUPPLEMENTARY_CODE_POINT
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4048
            && codePoint <  MAX_CODE_POINT + 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4049
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4050
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4051
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4052
     * Determines if the given {@code char} value is a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4053
     * <a href="http://www.unicode.org/glossary/#high_surrogate_code_unit">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4054
     * Unicode high-surrogate code unit</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4055
     * (also known as <i>leading-surrogate code unit</i>).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4056
     *
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4057
     * <p>Such values do not represent characters by themselves,
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4058
     * but are used in the representation of
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4059
     * <a href="#supplementary">supplementary characters</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4060
     * in the UTF-16 encoding.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4061
     *
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4062
     * @param  ch the {@code char} value to be tested.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4063
     * @return {@code true} if the {@code char} value is between
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4064
     *         {@link #MIN_HIGH_SURROGATE} and
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4065
     *         {@link #MAX_HIGH_SURROGATE} inclusive;
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4066
     *         {@code false} otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4067
     * @see    Character#isLowSurrogate(char)
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4068
     * @see    Character.UnicodeBlock#of(int)
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4069
     * @since  1.5
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4070
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4071
    public static boolean isHighSurrogate(char ch) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4072
        // Help VM constant-fold; MAX_HIGH_SURROGATE + 1 == MIN_LOW_SURROGATE
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4073
        return ch >= MIN_HIGH_SURROGATE && ch < (MAX_HIGH_SURROGATE + 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4074
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4075
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4076
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4077
     * Determines if the given {@code char} value is a
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4078
     * <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4079
     * Unicode low-surrogate code unit</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4080
     * (also known as <i>trailing-surrogate code unit</i>).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4081
     *
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4082
     * <p>Such values do not represent characters by themselves,
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4083
     * but are used in the representation of
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4084
     * <a href="#supplementary">supplementary characters</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4085
     * in the UTF-16 encoding.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4086
     *
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4087
     * @param  ch the {@code char} value to be tested.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4088
     * @return {@code true} if the {@code char} value is between
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4089
     *         {@link #MIN_LOW_SURROGATE} and
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4090
     *         {@link #MAX_LOW_SURROGATE} inclusive;
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4091
     *         {@code false} otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4092
     * @see    Character#isHighSurrogate(char)
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4093
     * @since  1.5
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4094
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4095
    public static boolean isLowSurrogate(char ch) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4096
        return ch >= MIN_LOW_SURROGATE && ch < (MAX_LOW_SURROGATE + 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4097
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4098
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4099
    /**
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4100
     * Determines if the given {@code char} value is a Unicode
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4101
     * <i>surrogate code unit</i>.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4102
     *
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4103
     * <p>Such values do not represent characters by themselves,
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4104
     * but are used in the representation of
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4105
     * <a href="#supplementary">supplementary characters</a>
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4106
     * in the UTF-16 encoding.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4107
     *
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4108
     * <p>A char value is a surrogate code unit if and only if it is either
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4109
     * a {@linkplain #isLowSurrogate(char) low-surrogate code unit} or
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4110
     * a {@linkplain #isHighSurrogate(char) high-surrogate code unit}.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4111
     *
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4112
     * @param  ch the {@code char} value to be tested.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4113
     * @return {@code true} if the {@code char} value is between
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4114
     *         {@link #MIN_SURROGATE} and
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4115
     *         {@link #MAX_SURROGATE} inclusive;
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4116
     *         {@code false} otherwise.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4117
     * @since  1.7
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4118
     */
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4119
    public static boolean isSurrogate(char ch) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4120
        return ch >= MIN_SURROGATE && ch < (MAX_SURROGATE + 1);
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4121
    }
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4122
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4123
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4124
     * Determines whether the specified pair of <code>char</code>
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4125
     * values is a valid
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4126
     * <a href="http://www.unicode.org/glossary/#surrogate_pair">
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4127
     * Unicode surrogate pair</a>.
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4128
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  4129
     * <p>This method is equivalent to the expression:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4130
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4131
     * isHighSurrogate(high) && isLowSurrogate(low)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4132
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4133
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4134
     * @param  high the high-surrogate code value to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4135
     * @param  low the low-surrogate code value to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4136
     * @return <code>true</code> if the specified high and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4137
     * low-surrogate code values represent a valid surrogate pair;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4138
     * <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4139
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4141
    public static boolean isSurrogatePair(char high, char low) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4142
        return isHighSurrogate(high) && isLowSurrogate(low);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4144
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4146
     * Determines the number of <code>char</code> values needed to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4147
     * represent the specified character (Unicode code point). If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4148
     * specified character is equal to or greater than 0x10000, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4149
     * the method returns 2. Otherwise, the method returns 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4150
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4151
     * <p>This method doesn't validate the specified character to be a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4152
     * valid Unicode code point. The caller must validate the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4153
     * character value using {@link #isValidCodePoint(int) isValidCodePoint}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4154
     * if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4155
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4156
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4157
     * @return  2 if the character is a valid supplementary character; 1 otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4158
     * @see     Character#isSupplementaryCodePoint(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4159
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4160
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4161
    public static int charCount(int codePoint) {
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4162
        return codePoint >= MIN_SUPPLEMENTARY_CODE_POINT ? 2 : 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4163
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4164
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4165
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4166
     * Converts the specified surrogate pair to its supplementary code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4167
     * point value. This method does not validate the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4168
     * surrogate pair. The caller must validate it using {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4169
     * #isSurrogatePair(char, char) isSurrogatePair} if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4171
     * @param  high the high-surrogate code unit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4172
     * @param  low the low-surrogate code unit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4173
     * @return the supplementary code point composed from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4174
     *         specified surrogate pair.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4175
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4176
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4177
    public static int toCodePoint(char high, char low) {
3323
29b6893c6188 6639443: Character.toCodePoint and Character.toSurrogates can be optimized
martin
parents: 3224
diff changeset
  4178
        // Optimized form of:
29b6893c6188 6639443: Character.toCodePoint and Character.toSurrogates can be optimized
martin
parents: 3224
diff changeset
  4179
        // return ((high - MIN_HIGH_SURROGATE) << 10)
29b6893c6188 6639443: Character.toCodePoint and Character.toSurrogates can be optimized
martin
parents: 3224
diff changeset
  4180
        //         + (low - MIN_LOW_SURROGATE)
29b6893c6188 6639443: Character.toCodePoint and Character.toSurrogates can be optimized
martin
parents: 3224
diff changeset
  4181
        //         + MIN_SUPPLEMENTARY_CODE_POINT;
29b6893c6188 6639443: Character.toCodePoint and Character.toSurrogates can be optimized
martin
parents: 3224
diff changeset
  4182
        return ((high << 10) + low) + (MIN_SUPPLEMENTARY_CODE_POINT
29b6893c6188 6639443: Character.toCodePoint and Character.toSurrogates can be optimized
martin
parents: 3224
diff changeset
  4183
                                       - (MIN_HIGH_SURROGATE << 10)
29b6893c6188 6639443: Character.toCodePoint and Character.toSurrogates can be optimized
martin
parents: 3224
diff changeset
  4184
                                       - MIN_LOW_SURROGATE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4185
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4186
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4187
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4188
     * Returns the code point at the given index of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4189
     * <code>CharSequence</code>. If the <code>char</code> value at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4190
     * the given index in the <code>CharSequence</code> is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4191
     * high-surrogate range, the following index is less than the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4192
     * length of the <code>CharSequence</code>, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4193
     * <code>char</code> value at the following index is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4194
     * low-surrogate range, then the supplementary code point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4195
     * corresponding to this surrogate pair is returned. Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4196
     * the <code>char</code> value at the given index is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4197
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4198
     * @param seq a sequence of <code>char</code> values (Unicode code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4199
     * units)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4200
     * @param index the index to the <code>char</code> values (Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4201
     * code units) in <code>seq</code> to be converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4202
     * @return the Unicode code point at the given index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4203
     * @exception NullPointerException if <code>seq</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4204
     * @exception IndexOutOfBoundsException if the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4205
     * <code>index</code> is negative or not less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4206
     * {@link CharSequence#length() seq.length()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4207
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4208
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4209
    public static int codePointAt(CharSequence seq, int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4210
        char c1 = seq.charAt(index++);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4211
        if (isHighSurrogate(c1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4212
            if (index < seq.length()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4213
                char c2 = seq.charAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4214
                if (isLowSurrogate(c2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4215
                    return toCodePoint(c1, c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4216
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4217
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4219
        return c1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4221
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4222
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4223
     * Returns the code point at the given index of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4224
     * <code>char</code> array. If the <code>char</code> value at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4225
     * the given index in the <code>char</code> array is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4226
     * high-surrogate range, the following index is less than the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4227
     * length of the <code>char</code> array, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4228
     * <code>char</code> value at the following index is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4229
     * low-surrogate range, then the supplementary code point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4230
     * corresponding to this surrogate pair is returned. Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4231
     * the <code>char</code> value at the given index is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4233
     * @param a the <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4234
     * @param index the index to the <code>char</code> values (Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4235
     * code units) in the <code>char</code> array to be converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4236
     * @return the Unicode code point at the given index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4237
     * @exception NullPointerException if <code>a</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4238
     * @exception IndexOutOfBoundsException if the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4239
     * <code>index</code> is negative or not less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4240
     * the length of the <code>char</code> array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4241
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4242
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4243
    public static int codePointAt(char[] a, int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4244
        return codePointAtImpl(a, index, a.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4247
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4248
     * Returns the code point at the given index of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4249
     * <code>char</code> array, where only array elements with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4250
     * <code>index</code> less than <code>limit</code> can be used. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4251
     * the <code>char</code> value at the given index in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4252
     * <code>char</code> array is in the high-surrogate range, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4253
     * following index is less than the <code>limit</code>, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4254
     * <code>char</code> value at the following index is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4255
     * low-surrogate range, then the supplementary code point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4256
     * corresponding to this surrogate pair is returned. Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4257
     * the <code>char</code> value at the given index is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4258
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4259
     * @param a the <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4260
     * @param index the index to the <code>char</code> values (Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4261
     * code units) in the <code>char</code> array to be converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4262
     * @param limit the index after the last array element that can be used in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4263
     * <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4264
     * @return the Unicode code point at the given index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4265
     * @exception NullPointerException if <code>a</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4266
     * @exception IndexOutOfBoundsException if the <code>index</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4267
     * argument is negative or not less than the <code>limit</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4268
     * argument, or if the <code>limit</code> argument is negative or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4269
     * greater than the length of the <code>char</code> array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4270
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4271
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4272
    public static int codePointAt(char[] a, int index, int limit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4273
        if (index >= limit || limit < 0 || limit > a.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4274
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4275
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4276
        return codePointAtImpl(a, index, limit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4278
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4279
    // throws ArrayIndexOutofBoundsException if index out of bounds
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4280
    static int codePointAtImpl(char[] a, int index, int limit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4281
        char c1 = a[index++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4282
        if (isHighSurrogate(c1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4283
            if (index < limit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4284
                char c2 = a[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4285
                if (isLowSurrogate(c2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4286
                    return toCodePoint(c1, c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4287
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4288
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4289
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4290
        return c1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4291
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4292
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4293
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4294
     * Returns the code point preceding the given index of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4295
     * <code>CharSequence</code>. If the <code>char</code> value at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4296
     * <code>(index - 1)</code> in the <code>CharSequence</code> is in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4297
     * the low-surrogate range, <code>(index - 2)</code> is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4298
     * negative, and the <code>char</code> value at <code>(index -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4299
     * 2)</code> in the <code>CharSequence</code> is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4300
     * high-surrogate range, then the supplementary code point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4301
     * corresponding to this surrogate pair is returned. Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4302
     * the <code>char</code> value at <code>(index - 1)</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4303
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4304
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4305
     * @param seq the <code>CharSequence</code> instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4306
     * @param index the index following the code point that should be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4307
     * @return the Unicode code point value before the given index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4308
     * @exception NullPointerException if <code>seq</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4309
     * @exception IndexOutOfBoundsException if the <code>index</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4310
     * argument is less than 1 or greater than {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4311
     * CharSequence#length() seq.length()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4312
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4314
    public static int codePointBefore(CharSequence seq, int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4315
        char c2 = seq.charAt(--index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4316
        if (isLowSurrogate(c2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4317
            if (index > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4318
                char c1 = seq.charAt(--index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4319
                if (isHighSurrogate(c1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4320
                    return toCodePoint(c1, c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4321
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4322
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4323
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4324
        return c2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4325
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4326
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4327
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4328
     * Returns the code point preceding the given index of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4329
     * <code>char</code> array. If the <code>char</code> value at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4330
     * <code>(index - 1)</code> in the <code>char</code> array is in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4331
     * the low-surrogate range, <code>(index - 2)</code> is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4332
     * negative, and the <code>char</code> value at <code>(index -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4333
     * 2)</code> in the <code>char</code> array is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4334
     * high-surrogate range, then the supplementary code point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4335
     * corresponding to this surrogate pair is returned. Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4336
     * the <code>char</code> value at <code>(index - 1)</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4337
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4338
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4339
     * @param a the <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4340
     * @param index the index following the code point that should be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4341
     * @return the Unicode code point value before the given index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4342
     * @exception NullPointerException if <code>a</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4343
     * @exception IndexOutOfBoundsException if the <code>index</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4344
     * argument is less than 1 or greater than the length of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4345
     * <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4346
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4348
    public static int codePointBefore(char[] a, int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4349
        return codePointBeforeImpl(a, index, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4350
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4351
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4352
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4353
     * Returns the code point preceding the given index of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4354
     * <code>char</code> array, where only array elements with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4355
     * <code>index</code> greater than or equal to <code>start</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4356
     * can be used. If the <code>char</code> value at <code>(index -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4357
     * 1)</code> in the <code>char</code> array is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4358
     * low-surrogate range, <code>(index - 2)</code> is not less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4359
     * <code>start</code>, and the <code>char</code> value at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4360
     * <code>(index - 2)</code> in the <code>char</code> array is in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4361
     * the high-surrogate range, then the supplementary code point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4362
     * corresponding to this surrogate pair is returned. Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4363
     * the <code>char</code> value at <code>(index - 1)</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4364
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4366
     * @param a the <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4367
     * @param index the index following the code point that should be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4368
     * @param start the index of the first array element in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4369
     * <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4370
     * @return the Unicode code point value before the given index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4371
     * @exception NullPointerException if <code>a</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4372
     * @exception IndexOutOfBoundsException if the <code>index</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4373
     * argument is not greater than the <code>start</code> argument or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4374
     * is greater than the length of the <code>char</code> array, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4375
     * if the <code>start</code> argument is negative or not less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4376
     * the length of the <code>char</code> array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4377
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4378
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4379
    public static int codePointBefore(char[] a, int index, int start) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4380
        if (index <= start || start < 0 || start >= a.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4381
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4382
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4383
        return codePointBeforeImpl(a, index, start);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4384
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4385
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4386
    // throws ArrayIndexOutofBoundsException if index-1 out of bounds
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4387
    static int codePointBeforeImpl(char[] a, int index, int start) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4388
        char c2 = a[--index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4389
        if (isLowSurrogate(c2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4390
            if (index > start) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4391
                char c1 = a[--index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4392
                if (isHighSurrogate(c1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4393
                    return toCodePoint(c1, c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4394
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4395
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4396
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4397
        return c2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4398
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4399
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4400
    /**
5991
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4401
     * Returns the leading surrogate (a
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4402
     * <a href="http://www.unicode.org/glossary/#high_surrogate_code_unit">
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4403
     * high surrogate code unit</a>) of the
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4404
     * <a href="http://www.unicode.org/glossary/#surrogate_pair">
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4405
     * surrogate pair</a>
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4406
     * representing the specified supplementary character (Unicode
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4407
     * code point) in the UTF-16 encoding.  If the specified character
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4408
     * is not a
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4409
     * <a href="Character.html#supplementary">supplementary character</a>,
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4410
     * an unspecified {@code char} is returned.
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4411
     *
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4412
     * <p>If
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4413
     * {@link #isSupplementaryCodePoint isSupplementaryCodePoint(x)}
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4414
     * is {@code true}, then
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4415
     * {@link #isHighSurrogate isHighSurrogate}{@code (highSurrogate(x))} and
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4416
     * {@link #toCodePoint toCodePoint}{@code (highSurrogate(x), }{@link #lowSurrogate lowSurrogate}{@code (x)) == x}
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4417
     * are also always {@code true}.
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4418
     *
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4419
     * @param   codePoint a supplementary character (Unicode code point)
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4420
     * @return  the leading surrogate code unit used to represent the
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4421
     *          character in the UTF-16 encoding
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4422
     * @since   1.7
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4423
     */
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4424
    public static char highSurrogate(int codePoint) {
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4425
        return (char) ((codePoint >>> 10)
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4426
            + (MIN_HIGH_SURROGATE - (MIN_SUPPLEMENTARY_CODE_POINT >>> 10)));
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4427
    }
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4428
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4429
    /**
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4430
     * Returns the trailing surrogate (a
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4431
     * <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit">
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4432
     * low surrogate code unit</a>) of the
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4433
     * <a href="http://www.unicode.org/glossary/#surrogate_pair">
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4434
     * surrogate pair</a>
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4435
     * representing the specified supplementary character (Unicode
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4436
     * code point) in the UTF-16 encoding.  If the specified character
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4437
     * is not a
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4438
     * <a href="Character.html#supplementary">supplementary character</a>,
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4439
     * an unspecified {@code char} is returned.
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4440
     *
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4441
     * <p>If
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4442
     * {@link #isSupplementaryCodePoint isSupplementaryCodePoint(x)}
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4443
     * is {@code true}, then
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4444
     * {@link #isLowSurrogate isLowSurrogate}{@code (lowSurrogate(x))} and
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4445
     * {@link #toCodePoint toCodePoint}{@code (}{@link #highSurrogate highSurrogate}{@code (x), lowSurrogate(x)) == x}
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4446
     * are also always {@code true}.
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4447
     *
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4448
     * @param   codePoint a supplementary character (Unicode code point)
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4449
     * @return  the trailing surrogate code unit used to represent the
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4450
     *          character in the UTF-16 encoding
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4451
     * @since   1.7
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4452
     */
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4453
    public static char lowSurrogate(int codePoint) {
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4454
        return (char) ((codePoint & 0x3ff) + MIN_LOW_SURROGATE);
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4455
    }
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4456
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4457
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4458
     * Converts the specified character (Unicode code point) to its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4459
     * UTF-16 representation. If the specified code point is a BMP
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4460
     * (Basic Multilingual Plane or Plane 0) value, the same value is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4461
     * stored in <code>dst[dstIndex]</code>, and 1 is returned. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4462
     * specified code point is a supplementary character, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4463
     * surrogate values are stored in <code>dst[dstIndex]</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4464
     * (high-surrogate) and <code>dst[dstIndex+1]</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4465
     * (low-surrogate), and 2 is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4466
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4467
     * @param  codePoint the character (Unicode code point) to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4468
     * @param  dst an array of <code>char</code> in which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4469
     * <code>codePoint</code>'s UTF-16 value is stored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4470
     * @param dstIndex the start index into the <code>dst</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4471
     * array where the converted value is stored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4472
     * @return 1 if the code point is a BMP code point, 2 if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4473
     * code point is a supplementary code point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4474
     * @exception IllegalArgumentException if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4475
     * <code>codePoint</code> is not a valid Unicode code point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4476
     * @exception NullPointerException if the specified <code>dst</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4477
     * @exception IndexOutOfBoundsException if <code>dstIndex</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4478
     * is negative or not less than <code>dst.length</code>, or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4479
     * <code>dst</code> at <code>dstIndex</code> doesn't have enough
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4480
     * array element(s) to store the resulting <code>char</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4481
     * value(s). (If <code>dstIndex</code> is equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4482
     * <code>dst.length-1</code> and the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4483
     * <code>codePoint</code> is a supplementary character, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4484
     * high-surrogate value is not stored in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4485
     * <code>dst[dstIndex]</code>.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4486
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4487
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4488
    public static int toChars(int codePoint, char[] dst, int dstIndex) {
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4489
        if (isBmpCodePoint(codePoint)) {
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4490
            dst[dstIndex] = (char) codePoint;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4491
            return 1;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4492
        } else if (isValidCodePoint(codePoint)) {
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4493
            toSurrogates(codePoint, dst, dstIndex);
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4494
            return 2;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4495
        } else {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4496
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4497
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4498
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4499
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4500
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4501
     * Converts the specified character (Unicode code point) to its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4502
     * UTF-16 representation stored in a <code>char</code> array. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4503
     * the specified code point is a BMP (Basic Multilingual Plane or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4504
     * Plane 0) value, the resulting <code>char</code> array has
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4505
     * the same value as <code>codePoint</code>. If the specified code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4506
     * point is a supplementary code point, the resulting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4507
     * <code>char</code> array has the corresponding surrogate pair.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4508
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4509
     * @param  codePoint a Unicode code point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4510
     * @return a <code>char</code> array having
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4511
     *         <code>codePoint</code>'s UTF-16 representation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4512
     * @exception IllegalArgumentException if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4513
     * <code>codePoint</code> is not a valid Unicode code point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4514
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4515
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4516
    public static char[] toChars(int codePoint) {
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4517
        if (isBmpCodePoint(codePoint)) {
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4518
            return new char[] { (char) codePoint };
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4519
        } else if (isValidCodePoint(codePoint)) {
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4520
            char[] result = new char[2];
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4521
            toSurrogates(codePoint, result, 0);
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4522
            return result;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  4523
        } else {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4524
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4525
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4526
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4527
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4528
    static void toSurrogates(int codePoint, char[] dst, int index) {
3323
29b6893c6188 6639443: Character.toCodePoint and Character.toSurrogates can be optimized
martin
parents: 3224
diff changeset
  4529
        // We write elements "backwards" to guarantee all-or-nothing
5991
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4530
        dst[index+1] = lowSurrogate(codePoint);
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5990
diff changeset
  4531
        dst[index] = highSurrogate(codePoint);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4532
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4533
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4534
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4535
     * Returns the number of Unicode code points in the text range of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4536
     * the specified char sequence. The text range begins at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4537
     * specified <code>beginIndex</code> and extends to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4538
     * <code>char</code> at index <code>endIndex - 1</code>. Thus the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4539
     * length (in <code>char</code>s) of the text range is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4540
     * <code>endIndex-beginIndex</code>. Unpaired surrogates within
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4541
     * the text range count as one code point each.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4542
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4543
     * @param seq the char sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4544
     * @param beginIndex the index to the first <code>char</code> of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4545
     * the text range.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4546
     * @param endIndex the index after the last <code>char</code> of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4547
     * the text range.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4548
     * @return the number of Unicode code points in the specified text
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4549
     * range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4550
     * @exception NullPointerException if <code>seq</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4551
     * @exception IndexOutOfBoundsException if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4552
     * <code>beginIndex</code> is negative, or <code>endIndex</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4553
     * is larger than the length of the given sequence, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4554
     * <code>beginIndex</code> is larger than <code>endIndex</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4555
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4556
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4557
    public static int codePointCount(CharSequence seq, int beginIndex, int endIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4558
        int length = seq.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4559
        if (beginIndex < 0 || endIndex > length || beginIndex > endIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4560
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4561
        }
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4562
        int n = endIndex - beginIndex;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4563
        for (int i = beginIndex; i < endIndex; ) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4564
            if (isHighSurrogate(seq.charAt(i++)) && i < endIndex &&
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4565
                isLowSurrogate(seq.charAt(i))) {
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4566
                n--;
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4567
                i++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4568
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4569
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4570
        return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4571
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4572
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4573
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4574
     * Returns the number of Unicode code points in a subarray of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4575
     * <code>char</code> array argument. The <code>offset</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4576
     * argument is the index of the first <code>char</code> of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4577
     * subarray and the <code>count</code> argument specifies the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4578
     * length of the subarray in <code>char</code>s. Unpaired
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4579
     * surrogates within the subarray count as one code point each.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4580
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4581
     * @param a the <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4582
     * @param offset the index of the first <code>char</code> in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4583
     * given <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4584
     * @param count the length of the subarray in <code>char</code>s
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4585
     * @return the number of Unicode code points in the specified subarray
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4586
     * @exception NullPointerException if <code>a</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4587
     * @exception IndexOutOfBoundsException if <code>offset</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4588
     * <code>count</code> is negative, or if <code>offset +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4589
     * count</code> is larger than the length of the given array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4590
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4591
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4592
    public static int codePointCount(char[] a, int offset, int count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4593
        if (count > a.length - offset || offset < 0 || count < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4594
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4595
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4596
        return codePointCountImpl(a, offset, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4597
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4598
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4599
    static int codePointCountImpl(char[] a, int offset, int count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4600
        int endIndex = offset + count;
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4601
        int n = count;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4602
        for (int i = offset; i < endIndex; ) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4603
            if (isHighSurrogate(a[i++]) && i < endIndex &&
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4604
                isLowSurrogate(a[i])) {
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4605
                n--;
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4606
                i++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4607
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4608
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4609
        return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4610
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4611
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4612
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4613
     * Returns the index within the given char sequence that is offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4614
     * from the given <code>index</code> by <code>codePointOffset</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4615
     * code points. Unpaired surrogates within the text range given by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4616
     * <code>index</code> and <code>codePointOffset</code> count as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4617
     * one code point each.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4618
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4619
     * @param seq the char sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4620
     * @param index the index to be offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4621
     * @param codePointOffset the offset in code points
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4622
     * @return the index within the char sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4623
     * @exception NullPointerException if <code>seq</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4624
     * @exception IndexOutOfBoundsException if <code>index</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4625
     *   is negative or larger then the length of the char sequence,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4626
     *   or if <code>codePointOffset</code> is positive and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4627
     *   subsequence starting with <code>index</code> has fewer than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4628
     *   <code>codePointOffset</code> code points, or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4629
     *   <code>codePointOffset</code> is negative and the subsequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4630
     *   before <code>index</code> has fewer than the absolute value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4631
     *   of <code>codePointOffset</code> code points.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4632
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4633
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4634
    public static int offsetByCodePoints(CharSequence seq, int index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4635
                                         int codePointOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4636
        int length = seq.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4637
        if (index < 0 || index > length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4638
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4639
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4640
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4641
        int x = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4642
        if (codePointOffset >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4643
            int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4644
            for (i = 0; x < length && i < codePointOffset; i++) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4645
                if (isHighSurrogate(seq.charAt(x++)) && x < length &&
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4646
                    isLowSurrogate(seq.charAt(x))) {
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4647
                    x++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4648
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4649
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4650
            if (i < codePointOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4651
                throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4652
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4653
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4654
            int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4655
            for (i = codePointOffset; x > 0 && i < 0; i++) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4656
                if (isLowSurrogate(seq.charAt(--x)) && x > 0 &&
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4657
                    isHighSurrogate(seq.charAt(x-1))) {
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4658
                    x--;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4659
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4660
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4661
            if (i < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4662
                throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4663
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4664
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4665
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4666
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4667
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4668
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4669
     * Returns the index within the given <code>char</code> subarray
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4670
     * that is offset from the given <code>index</code> by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4671
     * <code>codePointOffset</code> code points. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4672
     * <code>start</code> and <code>count</code> arguments specify a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4673
     * subarray of the <code>char</code> array. Unpaired surrogates
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4674
     * within the text range given by <code>index</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4675
     * <code>codePointOffset</code> count as one code point each.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4676
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4677
     * @param a the <code>char</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4678
     * @param start the index of the first <code>char</code> of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4679
     * subarray
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4680
     * @param count the length of the subarray in <code>char</code>s
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4681
     * @param index the index to be offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4682
     * @param codePointOffset the offset in code points
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4683
     * @return the index within the subarray
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4684
     * @exception NullPointerException if <code>a</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4685
     * @exception IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4686
     *   if <code>start</code> or <code>count</code> is negative,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4687
     *   or if <code>start + count</code> is larger than the length of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4688
     *   the given array,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4689
     *   or if <code>index</code> is less than <code>start</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4690
     *   larger then <code>start + count</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4691
     *   or if <code>codePointOffset</code> is positive and the text range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4692
     *   starting with <code>index</code> and ending with <code>start
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4693
     *   + count - 1</code> has fewer than <code>codePointOffset</code> code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4694
     *   points,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4695
     *   or if <code>codePointOffset</code> is negative and the text range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4696
     *   starting with <code>start</code> and ending with <code>index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4697
     *   - 1</code> has fewer than the absolute value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4698
     *   <code>codePointOffset</code> code points.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4699
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4700
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4701
    public static int offsetByCodePoints(char[] a, int start, int count,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4702
                                         int index, int codePointOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4703
        if (count > a.length-start || start < 0 || count < 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4704
            || index < start || index > start+count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4705
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4706
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4707
        return offsetByCodePointsImpl(a, start, count, index, codePointOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4708
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4709
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4710
    static int offsetByCodePointsImpl(char[]a, int start, int count,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4711
                                      int index, int codePointOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4712
        int x = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4713
        if (codePointOffset >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4714
            int limit = start + count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4715
            int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4716
            for (i = 0; x < limit && i < codePointOffset; i++) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4717
                if (isHighSurrogate(a[x++]) && x < limit &&
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4718
                    isLowSurrogate(a[x])) {
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4719
                    x++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4720
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4721
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4722
            if (i < codePointOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4723
                throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4724
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4725
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4726
            int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4727
            for (i = codePointOffset; x > start && i < 0; i++) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4728
                if (isLowSurrogate(a[--x]) && x > start &&
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4729
                    isHighSurrogate(a[x-1])) {
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  4730
                    x--;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4731
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4732
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4733
            if (i < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4734
                throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4735
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4736
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4737
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4738
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4739
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4740
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4741
     * Determines if the specified character is a lowercase character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4742
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4743
     * A character is lowercase if its general category type, provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4744
     * by <code>Character.getType(ch)</code>, is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4745
     * <code>LOWERCASE_LETTER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4746
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4747
     * The following are examples of lowercase characters:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4748
     * <p><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4749
     * a b c d e f g h i j k l m n o p q r s t u v w x y z
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4750
     * '&#92;u00DF' '&#92;u00E0' '&#92;u00E1' '&#92;u00E2' '&#92;u00E3' '&#92;u00E4' '&#92;u00E5' '&#92;u00E6'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4751
     * '&#92;u00E7' '&#92;u00E8' '&#92;u00E9' '&#92;u00EA' '&#92;u00EB' '&#92;u00EC' '&#92;u00ED' '&#92;u00EE'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4752
     * '&#92;u00EF' '&#92;u00F0' '&#92;u00F1' '&#92;u00F2' '&#92;u00F3' '&#92;u00F4' '&#92;u00F5' '&#92;u00F6'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4753
     * '&#92;u00F8' '&#92;u00F9' '&#92;u00FA' '&#92;u00FB' '&#92;u00FC' '&#92;u00FD' '&#92;u00FE' '&#92;u00FF'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4754
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4755
     * <p> Many other Unicode characters are lowercase too.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4756
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4757
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4758
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4759
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4760
     * the {@link #isLowerCase(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4761
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4762
     * @param   ch   the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4763
     * @return  <code>true</code> if the character is lowercase;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4764
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4765
     * @see     Character#isLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4766
     * @see     Character#isTitleCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4767
     * @see     Character#toLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4768
     * @see     Character#getType(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4769
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4770
    public static boolean isLowerCase(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4771
        return isLowerCase((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4772
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4773
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4774
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4775
     * Determines if the specified character (Unicode code point) is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4776
     * lowercase character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4777
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4778
     * A character is lowercase if its general category type, provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4779
     * by {@link Character#getType getType(codePoint)}, is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4780
     * <code>LOWERCASE_LETTER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4781
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4782
     * The following are examples of lowercase characters:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4783
     * <p><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4784
     * a b c d e f g h i j k l m n o p q r s t u v w x y z
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4785
     * '&#92;u00DF' '&#92;u00E0' '&#92;u00E1' '&#92;u00E2' '&#92;u00E3' '&#92;u00E4' '&#92;u00E5' '&#92;u00E6'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4786
     * '&#92;u00E7' '&#92;u00E8' '&#92;u00E9' '&#92;u00EA' '&#92;u00EB' '&#92;u00EC' '&#92;u00ED' '&#92;u00EE'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4787
     * '&#92;u00EF' '&#92;u00F0' '&#92;u00F1' '&#92;u00F2' '&#92;u00F3' '&#92;u00F4' '&#92;u00F5' '&#92;u00F6'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4788
     * '&#92;u00F8' '&#92;u00F9' '&#92;u00FA' '&#92;u00FB' '&#92;u00FC' '&#92;u00FD' '&#92;u00FE' '&#92;u00FF'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4789
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4790
     * <p> Many other Unicode characters are lowercase too.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4791
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4792
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4793
     * @return  <code>true</code> if the character is lowercase;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4794
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4795
     * @see     Character#isLowerCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4796
     * @see     Character#isTitleCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4797
     * @see     Character#toLowerCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4798
     * @see     Character#getType(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4799
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4800
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4801
    public static boolean isLowerCase(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4802
        return getType(codePoint) == Character.LOWERCASE_LETTER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4803
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4804
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4805
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4806
     * Determines if the specified character is an uppercase character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4807
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4808
     * A character is uppercase if its general category type, provided by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4809
     * <code>Character.getType(ch)</code>, is <code>UPPERCASE_LETTER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4810
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4811
     * The following are examples of uppercase characters:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4812
     * <p><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4813
     * A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4814
     * '&#92;u00C0' '&#92;u00C1' '&#92;u00C2' '&#92;u00C3' '&#92;u00C4' '&#92;u00C5' '&#92;u00C6' '&#92;u00C7'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4815
     * '&#92;u00C8' '&#92;u00C9' '&#92;u00CA' '&#92;u00CB' '&#92;u00CC' '&#92;u00CD' '&#92;u00CE' '&#92;u00CF'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4816
     * '&#92;u00D0' '&#92;u00D1' '&#92;u00D2' '&#92;u00D3' '&#92;u00D4' '&#92;u00D5' '&#92;u00D6' '&#92;u00D8'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4817
     * '&#92;u00D9' '&#92;u00DA' '&#92;u00DB' '&#92;u00DC' '&#92;u00DD' '&#92;u00DE'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4818
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4819
     * <p> Many other Unicode characters are uppercase too.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4820
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4821
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4822
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4823
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4824
     * the {@link #isUpperCase(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4825
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4826
     * @param   ch   the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4827
     * @return  <code>true</code> if the character is uppercase;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4828
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4829
     * @see     Character#isLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4830
     * @see     Character#isTitleCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4831
     * @see     Character#toUpperCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4832
     * @see     Character#getType(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4833
     * @since   1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4834
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4835
    public static boolean isUpperCase(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4836
        return isUpperCase((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4837
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4838
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4839
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4840
     * Determines if the specified character (Unicode code point) is an uppercase character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4841
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4842
     * A character is uppercase if its general category type, provided by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4843
     * {@link Character#getType(int) getType(codePoint)}, is <code>UPPERCASE_LETTER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4844
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4845
     * The following are examples of uppercase characters:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4846
     * <p><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4847
     * A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4848
     * '&#92;u00C0' '&#92;u00C1' '&#92;u00C2' '&#92;u00C3' '&#92;u00C4' '&#92;u00C5' '&#92;u00C6' '&#92;u00C7'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4849
     * '&#92;u00C8' '&#92;u00C9' '&#92;u00CA' '&#92;u00CB' '&#92;u00CC' '&#92;u00CD' '&#92;u00CE' '&#92;u00CF'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4850
     * '&#92;u00D0' '&#92;u00D1' '&#92;u00D2' '&#92;u00D3' '&#92;u00D4' '&#92;u00D5' '&#92;u00D6' '&#92;u00D8'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4851
     * '&#92;u00D9' '&#92;u00DA' '&#92;u00DB' '&#92;u00DC' '&#92;u00DD' '&#92;u00DE'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4852
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4853
     * <p> Many other Unicode characters are uppercase too.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4854
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4855
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4856
     * @return  <code>true</code> if the character is uppercase;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4857
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4858
     * @see     Character#isLowerCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4859
     * @see     Character#isTitleCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4860
     * @see     Character#toUpperCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4861
     * @see     Character#getType(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4862
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4863
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4864
    public static boolean isUpperCase(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4865
        return getType(codePoint) == Character.UPPERCASE_LETTER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4866
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4867
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4868
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4869
     * Determines if the specified character is a titlecase character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4870
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4871
     * A character is a titlecase character if its general
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4872
     * category type, provided by <code>Character.getType(ch)</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4873
     * is <code>TITLECASE_LETTER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4874
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4875
     * Some characters look like pairs of Latin letters. For example, there
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4876
     * is an uppercase letter that looks like "LJ" and has a corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4877
     * lowercase letter that looks like "lj". A third form, which looks like "Lj",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4878
     * is the appropriate form to use when rendering a word in lowercase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4879
     * with initial capitals, as for a book title.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4880
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4881
     * These are some of the Unicode characters for which this method returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4882
     * <code>true</code>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4883
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4884
     * <li><code>LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4885
     * <li><code>LATIN CAPITAL LETTER L WITH SMALL LETTER J</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4886
     * <li><code>LATIN CAPITAL LETTER N WITH SMALL LETTER J</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4887
     * <li><code>LATIN CAPITAL LETTER D WITH SMALL LETTER Z</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4888
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4889
     * <p> Many other Unicode characters are titlecase too.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4890
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4891
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4892
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4893
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4894
     * the {@link #isTitleCase(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4895
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4896
     * @param   ch   the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4897
     * @return  <code>true</code> if the character is titlecase;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4898
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4899
     * @see     Character#isLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4900
     * @see     Character#isUpperCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4901
     * @see     Character#toTitleCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4902
     * @see     Character#getType(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4903
     * @since   1.0.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4904
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4905
    public static boolean isTitleCase(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4906
        return isTitleCase((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4907
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4908
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4909
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4910
     * Determines if the specified character (Unicode code point) is a titlecase character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4911
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4912
     * A character is a titlecase character if its general
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4913
     * category type, provided by {@link Character#getType(int) getType(codePoint)},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4914
     * is <code>TITLECASE_LETTER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4915
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4916
     * Some characters look like pairs of Latin letters. For example, there
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4917
     * is an uppercase letter that looks like "LJ" and has a corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4918
     * lowercase letter that looks like "lj". A third form, which looks like "Lj",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4919
     * is the appropriate form to use when rendering a word in lowercase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4920
     * with initial capitals, as for a book title.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4921
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4922
     * These are some of the Unicode characters for which this method returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4923
     * <code>true</code>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4924
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4925
     * <li><code>LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4926
     * <li><code>LATIN CAPITAL LETTER L WITH SMALL LETTER J</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4927
     * <li><code>LATIN CAPITAL LETTER N WITH SMALL LETTER J</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4928
     * <li><code>LATIN CAPITAL LETTER D WITH SMALL LETTER Z</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4929
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4930
     * <p> Many other Unicode characters are titlecase too.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4931
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4932
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4933
     * @return  <code>true</code> if the character is titlecase;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4934
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4935
     * @see     Character#isLowerCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4936
     * @see     Character#isUpperCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4937
     * @see     Character#toTitleCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4938
     * @see     Character#getType(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4939
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4940
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4941
    public static boolean isTitleCase(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4942
        return getType(codePoint) == Character.TITLECASE_LETTER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4943
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4944
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4945
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4946
     * Determines if the specified character is a digit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4947
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4948
     * A character is a digit if its general category type, provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4949
     * by <code>Character.getType(ch)</code>, is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4950
     * <code>DECIMAL_DIGIT_NUMBER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4951
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4952
     * Some Unicode character ranges that contain digits:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4953
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4954
     * <li><code>'&#92;u0030'</code> through <code>'&#92;u0039'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4955
     *     ISO-LATIN-1 digits (<code>'0'</code> through <code>'9'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4956
     * <li><code>'&#92;u0660'</code> through <code>'&#92;u0669'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4957
     *     Arabic-Indic digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4958
     * <li><code>'&#92;u06F0'</code> through <code>'&#92;u06F9'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4959
     *     Extended Arabic-Indic digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4960
     * <li><code>'&#92;u0966'</code> through <code>'&#92;u096F'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4961
     *     Devanagari digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4962
     * <li><code>'&#92;uFF10'</code> through <code>'&#92;uFF19'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4963
     *     Fullwidth digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4964
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4965
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4966
     * Many other character ranges contain digits as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4967
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4968
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4969
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4970
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4971
     * the {@link #isDigit(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4972
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4973
     * @param   ch   the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4974
     * @return  <code>true</code> if the character is a digit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4975
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4976
     * @see     Character#digit(char, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4977
     * @see     Character#forDigit(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  4978
     * @see     Character#getType(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4979
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4980
    public static boolean isDigit(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4981
        return isDigit((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4982
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4983
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4984
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4985
     * Determines if the specified character (Unicode code point) is a digit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4986
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4987
     * A character is a digit if its general category type, provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4988
     * by {@link Character#getType(int) getType(codePoint)}, is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4989
     * <code>DECIMAL_DIGIT_NUMBER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4990
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4991
     * Some Unicode character ranges that contain digits:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4992
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4993
     * <li><code>'&#92;u0030'</code> through <code>'&#92;u0039'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4994
     *     ISO-LATIN-1 digits (<code>'0'</code> through <code>'9'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4995
     * <li><code>'&#92;u0660'</code> through <code>'&#92;u0669'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4996
     *     Arabic-Indic digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4997
     * <li><code>'&#92;u06F0'</code> through <code>'&#92;u06F9'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4998
     *     Extended Arabic-Indic digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4999
     * <li><code>'&#92;u0966'</code> through <code>'&#92;u096F'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5000
     *     Devanagari digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5001
     * <li><code>'&#92;uFF10'</code> through <code>'&#92;uFF19'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5002
     *     Fullwidth digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5003
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5004
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5005
     * Many other character ranges contain digits as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5006
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5007
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5008
     * @return  <code>true</code> if the character is a digit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5009
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5010
     * @see     Character#forDigit(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5011
     * @see     Character#getType(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5012
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5013
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5014
    public static boolean isDigit(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5015
        return getType(codePoint) == Character.DECIMAL_DIGIT_NUMBER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5016
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5017
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5018
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5019
     * Determines if a character is defined in Unicode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5020
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5021
     * A character is defined if at least one of the following is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5022
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5023
     * <li>It has an entry in the UnicodeData file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5024
     * <li>It has a value in a range defined by the UnicodeData file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5025
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5026
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5027
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5028
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5029
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5030
     * the {@link #isDefined(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5031
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5032
     * @param   ch   the character to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5033
     * @return  <code>true</code> if the character has a defined meaning
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5034
     *          in Unicode; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5035
     * @see     Character#isDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5036
     * @see     Character#isLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5037
     * @see     Character#isLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5038
     * @see     Character#isLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5039
     * @see     Character#isTitleCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5040
     * @see     Character#isUpperCase(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5041
     * @since   1.0.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5042
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5043
    public static boolean isDefined(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5044
        return isDefined((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5045
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5046
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5047
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5048
     * Determines if a character (Unicode code point) is defined in Unicode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5049
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5050
     * A character is defined if at least one of the following is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5051
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5052
     * <li>It has an entry in the UnicodeData file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5053
     * <li>It has a value in a range defined by the UnicodeData file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5054
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5055
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5056
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5057
     * @return  <code>true</code> if the character has a defined meaning
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5058
     *          in Unicode; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5059
     * @see     Character#isDigit(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5060
     * @see     Character#isLetter(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5061
     * @see     Character#isLetterOrDigit(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5062
     * @see     Character#isLowerCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5063
     * @see     Character#isTitleCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5064
     * @see     Character#isUpperCase(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5065
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5066
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5067
    public static boolean isDefined(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5068
        return getType(codePoint) != Character.UNASSIGNED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5069
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5070
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5071
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5072
     * Determines if the specified character is a letter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5073
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5074
     * A character is considered to be a letter if its general
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5075
     * category type, provided by <code>Character.getType(ch)</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5076
     * is any of the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5077
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5078
     * <li> <code>UPPERCASE_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5079
     * <li> <code>LOWERCASE_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5080
     * <li> <code>TITLECASE_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5081
     * <li> <code>MODIFIER_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5082
     * <li> <code>OTHER_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5083
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5084
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5085
     * Not all letters have case. Many characters are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5086
     * letters but are neither uppercase nor lowercase nor titlecase.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5087
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5088
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5089
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5090
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5091
     * the {@link #isLetter(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5092
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5093
     * @param   ch   the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5094
     * @return  <code>true</code> if the character is a letter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5095
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5096
     * @see     Character#isDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5097
     * @see     Character#isJavaIdentifierStart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5098
     * @see     Character#isJavaLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5099
     * @see     Character#isJavaLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5100
     * @see     Character#isLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5101
     * @see     Character#isLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5102
     * @see     Character#isTitleCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5103
     * @see     Character#isUnicodeIdentifierStart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5104
     * @see     Character#isUpperCase(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5105
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5106
    public static boolean isLetter(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5107
        return isLetter((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5109
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5110
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5111
     * Determines if the specified character (Unicode code point) is a letter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5112
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5113
     * A character is considered to be a letter if its general
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5114
     * category type, provided by {@link Character#getType(int) getType(codePoint)},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5115
     * is any of the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5116
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5117
     * <li> <code>UPPERCASE_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5118
     * <li> <code>LOWERCASE_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5119
     * <li> <code>TITLECASE_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5120
     * <li> <code>MODIFIER_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5121
     * <li> <code>OTHER_LETTER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5122
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5124
     * Not all letters have case. Many characters are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5125
     * letters but are neither uppercase nor lowercase nor titlecase.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5126
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5127
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5128
     * @return  <code>true</code> if the character is a letter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5129
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5130
     * @see     Character#isDigit(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5131
     * @see     Character#isJavaIdentifierStart(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5132
     * @see     Character#isLetterOrDigit(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5133
     * @see     Character#isLowerCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5134
     * @see     Character#isTitleCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5135
     * @see     Character#isUnicodeIdentifierStart(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5136
     * @see     Character#isUpperCase(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5137
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5138
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5139
    public static boolean isLetter(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5140
        return ((((1 << Character.UPPERCASE_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5141
            (1 << Character.LOWERCASE_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5142
            (1 << Character.TITLECASE_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5143
            (1 << Character.MODIFIER_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5144
            (1 << Character.OTHER_LETTER)) >> getType(codePoint)) & 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5145
            != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5147
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5149
     * Determines if the specified character is a letter or digit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5150
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5151
     * A character is considered to be a letter or digit if either
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5152
     * <code>Character.isLetter(char ch)</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5153
     * <code>Character.isDigit(char ch)</code> returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5154
     * <code>true</code> for the character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5155
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5156
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5157
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5158
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5159
     * the {@link #isLetterOrDigit(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5160
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5161
     * @param   ch   the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5162
     * @return  <code>true</code> if the character is a letter or digit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5163
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5164
     * @see     Character#isDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5165
     * @see     Character#isJavaIdentifierPart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5166
     * @see     Character#isJavaLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5167
     * @see     Character#isJavaLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5168
     * @see     Character#isLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5169
     * @see     Character#isUnicodeIdentifierPart(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5170
     * @since   1.0.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5172
    public static boolean isLetterOrDigit(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5173
        return isLetterOrDigit((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5175
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5177
     * Determines if the specified character (Unicode code point) is a letter or digit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5178
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5179
     * A character is considered to be a letter or digit if either
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5180
     * {@link #isLetter(int) isLetter(codePoint)} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5181
     * {@link #isDigit(int) isDigit(codePoint)} returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5182
     * <code>true</code> for the character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5184
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5185
     * @return  <code>true</code> if the character is a letter or digit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5186
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5187
     * @see     Character#isDigit(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5188
     * @see     Character#isJavaIdentifierPart(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5189
     * @see     Character#isLetter(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5190
     * @see     Character#isUnicodeIdentifierPart(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5191
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5193
    public static boolean isLetterOrDigit(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5194
        return ((((1 << Character.UPPERCASE_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5195
            (1 << Character.LOWERCASE_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5196
            (1 << Character.TITLECASE_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5197
            (1 << Character.MODIFIER_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5198
            (1 << Character.OTHER_LETTER) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5199
            (1 << Character.DECIMAL_DIGIT_NUMBER)) >> getType(codePoint)) & 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5200
            != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5202
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5203
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5204
     * Determines if the specified character is permissible as the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5205
     * character in a Java identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5206
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5207
     * A character may start a Java identifier if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5208
     * one of the following is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5209
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5210
     * <li> {@link #isLetter(char) isLetter(ch)} returns <code>true</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5211
     * <li> {@link #getType(char) getType(ch)} returns <code>LETTER_NUMBER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5212
     * <li> ch is a currency symbol (such as "$")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5213
     * <li> ch is a connecting punctuation character (such as "_").
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5214
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5216
     * @param   ch the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5217
     * @return  <code>true</code> if the character may start a Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5218
     *          identifier; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5219
     * @see     Character#isJavaLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5220
     * @see     Character#isJavaIdentifierStart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5221
     * @see     Character#isJavaIdentifierPart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5222
     * @see     Character#isLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5223
     * @see     Character#isLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5224
     * @see     Character#isUnicodeIdentifierStart(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5225
     * @since   1.02
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5226
     * @deprecated Replaced by isJavaIdentifierStart(char).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5227
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5228
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5229
    public static boolean isJavaLetter(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5230
        return isJavaIdentifierStart(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5231
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5232
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5233
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5234
     * Determines if the specified character may be part of a Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5235
     * identifier as other than the first character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5236
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5237
     * A character may be part of a Java identifier if and only if any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5238
     * of the following are true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5239
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5240
     * <li>  it is a letter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5241
     * <li>  it is a currency symbol (such as <code>'$'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5242
     * <li>  it is a connecting punctuation character (such as <code>'_'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5243
     * <li>  it is a digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5244
     * <li>  it is a numeric letter (such as a Roman numeral character)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5245
     * <li>  it is a combining mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5246
     * <li>  it is a non-spacing mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5247
     * <li> <code>isIdentifierIgnorable</code> returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5248
     * <code>true</code> for the character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5249
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5250
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5251
     * @param   ch the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5252
     * @return  <code>true</code> if the character may be part of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5253
     *          Java identifier; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5254
     * @see     Character#isJavaLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5255
     * @see     Character#isJavaIdentifierStart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5256
     * @see     Character#isJavaIdentifierPart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5257
     * @see     Character#isLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5258
     * @see     Character#isLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5259
     * @see     Character#isUnicodeIdentifierPart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5260
     * @see     Character#isIdentifierIgnorable(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5261
     * @since   1.02
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5262
     * @deprecated Replaced by isJavaIdentifierPart(char).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5263
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5264
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5265
    public static boolean isJavaLetterOrDigit(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5266
        return isJavaIdentifierPart(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5267
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5268
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5269
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5270
     * Determines if the specified character is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5271
     * permissible as the first character in a Java identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5272
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5273
     * A character may start a Java identifier if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5274
     * one of the following conditions is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5275
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5276
     * <li> {@link #isLetter(char) isLetter(ch)} returns <code>true</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5277
     * <li> {@link #getType(char) getType(ch)} returns <code>LETTER_NUMBER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5278
     * <li> ch is a currency symbol (such as "$")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5279
     * <li> ch is a connecting punctuation character (such as "_").
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5280
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5281
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5282
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5283
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5284
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5285
     * the {@link #isJavaIdentifierStart(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5286
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5287
     * @param   ch the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5288
     * @return  <code>true</code> if the character may start a Java identifier;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5289
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5290
     * @see     Character#isJavaIdentifierPart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5291
     * @see     Character#isLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5292
     * @see     Character#isUnicodeIdentifierStart(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5293
     * @see     javax.lang.model.SourceVersion#isIdentifier(CharSequence)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5294
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5295
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5296
    public static boolean isJavaIdentifierStart(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5297
        return isJavaIdentifierStart((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5299
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5300
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5301
     * Determines if the character (Unicode code point) is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5302
     * permissible as the first character in a Java identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5303
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5304
     * A character may start a Java identifier if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5305
     * one of the following conditions is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5306
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5307
     * <li> {@link #isLetter(int) isLetter(codePoint)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5308
     *      returns <code>true</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5309
     * <li> {@link #getType(int) getType(codePoint)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5310
     *      returns <code>LETTER_NUMBER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5311
     * <li> the referenced character is a currency symbol (such as "$")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5312
     * <li> the referenced character is a connecting punctuation character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5313
     *      (such as "_").
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5314
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5315
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5316
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5317
     * @return  <code>true</code> if the character may start a Java identifier;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5318
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5319
     * @see     Character#isJavaIdentifierPart(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5320
     * @see     Character#isLetter(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5321
     * @see     Character#isUnicodeIdentifierStart(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5322
     * @see     javax.lang.model.SourceVersion#isIdentifier(CharSequence)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5323
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5324
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5325
    public static boolean isJavaIdentifierStart(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5326
        return CharacterData.of(codePoint).isJavaIdentifierStart(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5327
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5328
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5329
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5330
     * Determines if the specified character may be part of a Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5331
     * identifier as other than the first character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5332
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5333
     * A character may be part of a Java identifier if any of the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5334
     * are true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5335
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5336
     * <li>  it is a letter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5337
     * <li>  it is a currency symbol (such as <code>'$'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5338
     * <li>  it is a connecting punctuation character (such as <code>'_'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5339
     * <li>  it is a digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5340
     * <li>  it is a numeric letter (such as a Roman numeral character)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5341
     * <li>  it is a combining mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5342
     * <li>  it is a non-spacing mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5343
     * <li> <code>isIdentifierIgnorable</code> returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5344
     * <code>true</code> for the character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5345
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5346
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5347
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5348
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5349
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5350
     * the {@link #isJavaIdentifierPart(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5351
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5352
     * @param   ch      the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5353
     * @return <code>true</code> if the character may be part of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5354
     *          Java identifier; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5355
     * @see     Character#isIdentifierIgnorable(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5356
     * @see     Character#isJavaIdentifierStart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5357
     * @see     Character#isLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5358
     * @see     Character#isUnicodeIdentifierPart(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5359
     * @see     javax.lang.model.SourceVersion#isIdentifier(CharSequence)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5360
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5361
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5362
    public static boolean isJavaIdentifierPart(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5363
        return isJavaIdentifierPart((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5364
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5365
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5366
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5367
     * Determines if the character (Unicode code point) may be part of a Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5368
     * identifier as other than the first character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5369
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5370
     * A character may be part of a Java identifier if any of the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5371
     * are true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5372
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5373
     * <li>  it is a letter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5374
     * <li>  it is a currency symbol (such as <code>'$'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5375
     * <li>  it is a connecting punctuation character (such as <code>'_'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5376
     * <li>  it is a digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5377
     * <li>  it is a numeric letter (such as a Roman numeral character)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5378
     * <li>  it is a combining mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5379
     * <li>  it is a non-spacing mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5380
     * <li> {@link #isIdentifierIgnorable(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5381
     * isIdentifierIgnorable(codePoint)} returns <code>true</code> for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5382
     * the character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5383
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5384
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5385
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5386
     * @return <code>true</code> if the character may be part of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5387
     *          Java identifier; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5388
     * @see     Character#isIdentifierIgnorable(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5389
     * @see     Character#isJavaIdentifierStart(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5390
     * @see     Character#isLetterOrDigit(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5391
     * @see     Character#isUnicodeIdentifierPart(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5392
     * @see     javax.lang.model.SourceVersion#isIdentifier(CharSequence)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5393
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5394
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5395
    public static boolean isJavaIdentifierPart(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5396
        return CharacterData.of(codePoint).isJavaIdentifierPart(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5397
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5398
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5399
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5400
     * Determines if the specified character is permissible as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5401
     * first character in a Unicode identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5402
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5403
     * A character may start a Unicode identifier if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5404
     * one of the following conditions is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5405
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5406
     * <li> {@link #isLetter(char) isLetter(ch)} returns <code>true</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5407
     * <li> {@link #getType(char) getType(ch)} returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5408
     *      <code>LETTER_NUMBER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5409
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5410
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5411
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5412
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5413
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5414
     * the {@link #isUnicodeIdentifierStart(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5415
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5416
     * @param   ch      the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5417
     * @return  <code>true</code> if the character may start a Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5418
     *          identifier; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5419
     * @see     Character#isJavaIdentifierStart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5420
     * @see     Character#isLetter(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5421
     * @see     Character#isUnicodeIdentifierPart(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5422
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5423
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5424
    public static boolean isUnicodeIdentifierStart(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5425
        return isUnicodeIdentifierStart((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5426
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5427
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5428
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5429
     * Determines if the specified character (Unicode code point) is permissible as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5430
     * first character in a Unicode identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5431
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5432
     * A character may start a Unicode identifier if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5433
     * one of the following conditions is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5434
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5435
     * <li> {@link #isLetter(int) isLetter(codePoint)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5436
     *      returns <code>true</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5437
     * <li> {@link #getType(int) getType(codePoint)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5438
     *      returns <code>LETTER_NUMBER</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5439
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5440
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5441
     * @return  <code>true</code> if the character may start a Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5442
     *          identifier; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5443
     * @see     Character#isJavaIdentifierStart(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5444
     * @see     Character#isLetter(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5445
     * @see     Character#isUnicodeIdentifierPart(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5446
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5447
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5448
    public static boolean isUnicodeIdentifierStart(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5449
        return CharacterData.of(codePoint).isUnicodeIdentifierStart(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5450
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5451
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5452
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5453
     * Determines if the specified character may be part of a Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5454
     * identifier as other than the first character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5455
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5456
     * A character may be part of a Unicode identifier if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5457
     * one of the following statements is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5458
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5459
     * <li>  it is a letter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5460
     * <li>  it is a connecting punctuation character (such as <code>'_'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5461
     * <li>  it is a digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5462
     * <li>  it is a numeric letter (such as a Roman numeral character)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5463
     * <li>  it is a combining mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5464
     * <li>  it is a non-spacing mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5465
     * <li> <code>isIdentifierIgnorable</code> returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5466
     * <code>true</code> for this character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5467
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5468
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5469
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5470
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5471
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5472
     * the {@link #isUnicodeIdentifierPart(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5473
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5474
     * @param   ch      the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5475
     * @return  <code>true</code> if the character may be part of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5476
     *          Unicode identifier; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5477
     * @see     Character#isIdentifierIgnorable(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5478
     * @see     Character#isJavaIdentifierPart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5479
     * @see     Character#isLetterOrDigit(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5480
     * @see     Character#isUnicodeIdentifierStart(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5481
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5482
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5483
    public static boolean isUnicodeIdentifierPart(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5484
        return isUnicodeIdentifierPart((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5485
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5486
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5487
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5488
     * Determines if the specified character (Unicode code point) may be part of a Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5489
     * identifier as other than the first character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5490
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5491
     * A character may be part of a Unicode identifier if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5492
     * one of the following statements is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5493
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5494
     * <li>  it is a letter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5495
     * <li>  it is a connecting punctuation character (such as <code>'_'</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5496
     * <li>  it is a digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5497
     * <li>  it is a numeric letter (such as a Roman numeral character)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5498
     * <li>  it is a combining mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5499
     * <li>  it is a non-spacing mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5500
     * <li> <code>isIdentifierIgnorable</code> returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5501
     * <code>true</code> for this character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5502
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5503
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5504
     * @return  <code>true</code> if the character may be part of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5505
     *          Unicode identifier; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5506
     * @see     Character#isIdentifierIgnorable(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5507
     * @see     Character#isJavaIdentifierPart(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5508
     * @see     Character#isLetterOrDigit(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5509
     * @see     Character#isUnicodeIdentifierStart(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5510
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5511
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5512
    public static boolean isUnicodeIdentifierPart(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5513
        return CharacterData.of(codePoint).isUnicodeIdentifierPart(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5514
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5515
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5516
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5517
     * Determines if the specified character should be regarded as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5518
     * an ignorable character in a Java identifier or a Unicode identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5519
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5520
     * The following Unicode characters are ignorable in a Java identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5521
     * or a Unicode identifier:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5522
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5523
     * <li>ISO control characters that are not whitespace
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5524
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5525
     * <li><code>'&#92;u0000'</code> through <code>'&#92;u0008'</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5526
     * <li><code>'&#92;u000E'</code> through <code>'&#92;u001B'</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5527
     * <li><code>'&#92;u007F'</code> through <code>'&#92;u009F'</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5528
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5529
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5530
     * <li>all characters that have the <code>FORMAT</code> general
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5531
     * category value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5532
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5533
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5534
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5535
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5536
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5537
     * the {@link #isIdentifierIgnorable(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5538
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5539
     * @param   ch      the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5540
     * @return  <code>true</code> if the character is an ignorable control
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5541
     *          character that may be part of a Java or Unicode identifier;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5542
     *           <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5543
     * @see     Character#isJavaIdentifierPart(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5544
     * @see     Character#isUnicodeIdentifierPart(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5545
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5546
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5547
    public static boolean isIdentifierIgnorable(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5548
        return isIdentifierIgnorable((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5549
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5550
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5551
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5552
     * Determines if the specified character (Unicode code point) should be regarded as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5553
     * an ignorable character in a Java identifier or a Unicode identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5554
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5555
     * The following Unicode characters are ignorable in a Java identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5556
     * or a Unicode identifier:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5557
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5558
     * <li>ISO control characters that are not whitespace
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5559
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5560
     * <li><code>'&#92;u0000'</code> through <code>'&#92;u0008'</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5561
     * <li><code>'&#92;u000E'</code> through <code>'&#92;u001B'</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5562
     * <li><code>'&#92;u007F'</code> through <code>'&#92;u009F'</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5563
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5564
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5565
     * <li>all characters that have the <code>FORMAT</code> general
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5566
     * category value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5567
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5568
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5569
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5570
     * @return  <code>true</code> if the character is an ignorable control
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5571
     *          character that may be part of a Java or Unicode identifier;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5572
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5573
     * @see     Character#isJavaIdentifierPart(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5574
     * @see     Character#isUnicodeIdentifierPart(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5575
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5576
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5577
    public static boolean isIdentifierIgnorable(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5578
        return CharacterData.of(codePoint).isIdentifierIgnorable(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5579
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5580
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5581
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5582
     * Converts the character argument to lowercase using case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5583
     * mapping information from the UnicodeData file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5584
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5585
     * Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5586
     * <code>Character.isLowerCase(Character.toLowerCase(ch))</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5587
     * does not always return <code>true</code> for some ranges of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5588
     * characters, particularly those that are symbols or ideographs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5589
     *
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5590
     * <p>In general, {@link String#toLowerCase()} should be used to map
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5591
     * characters to lowercase. <code>String</code> case mapping methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5592
     * have several benefits over <code>Character</code> case mapping methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5593
     * <code>String</code> case mapping methods can perform locale-sensitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5594
     * mappings, context-sensitive mappings, and 1:M character mappings, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5595
     * the <code>Character</code> case mapping methods cannot.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5596
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5597
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5598
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5599
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5600
     * the {@link #toLowerCase(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5601
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5602
     * @param   ch   the character to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5603
     * @return  the lowercase equivalent of the character, if any;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5604
     *          otherwise, the character itself.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5605
     * @see     Character#isLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5606
     * @see     String#toLowerCase()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5607
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5608
    public static char toLowerCase(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5609
        return (char)toLowerCase((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5610
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5611
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5612
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5613
     * Converts the character (Unicode code point) argument to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5614
     * lowercase using case mapping information from the UnicodeData
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5615
     * file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5616
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5617
     * <p> Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5618
     * <code>Character.isLowerCase(Character.toLowerCase(codePoint))</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5619
     * does not always return <code>true</code> for some ranges of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5620
     * characters, particularly those that are symbols or ideographs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5621
     *
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5622
     * <p>In general, {@link String#toLowerCase()} should be used to map
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5623
     * characters to lowercase. <code>String</code> case mapping methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5624
     * have several benefits over <code>Character</code> case mapping methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5625
     * <code>String</code> case mapping methods can perform locale-sensitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5626
     * mappings, context-sensitive mappings, and 1:M character mappings, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5627
     * the <code>Character</code> case mapping methods cannot.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5628
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5629
     * @param   codePoint   the character (Unicode code point) to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5630
     * @return  the lowercase equivalent of the character (Unicode code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5631
     *          point), if any; otherwise, the character itself.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5632
     * @see     Character#isLowerCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5633
     * @see     String#toLowerCase()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5634
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5635
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5636
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5637
    public static int toLowerCase(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5638
        return CharacterData.of(codePoint).toLowerCase(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5639
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5640
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5641
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5642
     * Converts the character argument to uppercase using case mapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5643
     * information from the UnicodeData file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5644
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5645
     * Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5646
     * <code>Character.isUpperCase(Character.toUpperCase(ch))</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5647
     * does not always return <code>true</code> for some ranges of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5648
     * characters, particularly those that are symbols or ideographs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5649
     *
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5650
     * <p>In general, {@link String#toUpperCase()} should be used to map
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5651
     * characters to uppercase. <code>String</code> case mapping methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5652
     * have several benefits over <code>Character</code> case mapping methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5653
     * <code>String</code> case mapping methods can perform locale-sensitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5654
     * mappings, context-sensitive mappings, and 1:M character mappings, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5655
     * the <code>Character</code> case mapping methods cannot.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5656
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5657
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5658
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5659
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5660
     * the {@link #toUpperCase(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5661
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5662
     * @param   ch   the character to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5663
     * @return  the uppercase equivalent of the character, if any;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5664
     *          otherwise, the character itself.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5665
     * @see     Character#isUpperCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5666
     * @see     String#toUpperCase()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5667
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5668
    public static char toUpperCase(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5669
        return (char)toUpperCase((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5670
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5671
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5672
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5673
     * Converts the character (Unicode code point) argument to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5674
     * uppercase using case mapping information from the UnicodeData
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5675
     * file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5676
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5677
     * <p>Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5678
     * <code>Character.isUpperCase(Character.toUpperCase(codePoint))</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5679
     * does not always return <code>true</code> for some ranges of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5680
     * characters, particularly those that are symbols or ideographs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5681
     *
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5682
     * <p>In general, {@link String#toUpperCase()} should be used to map
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5683
     * characters to uppercase. <code>String</code> case mapping methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5684
     * have several benefits over <code>Character</code> case mapping methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5685
     * <code>String</code> case mapping methods can perform locale-sensitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5686
     * mappings, context-sensitive mappings, and 1:M character mappings, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5687
     * the <code>Character</code> case mapping methods cannot.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5688
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5689
     * @param   codePoint   the character (Unicode code point) to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5690
     * @return  the uppercase equivalent of the character, if any;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5691
     *          otherwise, the character itself.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5692
     * @see     Character#isUpperCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5693
     * @see     String#toUpperCase()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5694
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5695
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5696
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5697
    public static int toUpperCase(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5698
        return CharacterData.of(codePoint).toUpperCase(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5699
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5700
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5701
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5702
     * Converts the character argument to titlecase using case mapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5703
     * information from the UnicodeData file. If a character has no
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5704
     * explicit titlecase mapping and is not itself a titlecase char
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5705
     * according to UnicodeData, then the uppercase mapping is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5706
     * returned as an equivalent titlecase mapping. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5707
     * <code>char</code> argument is already a titlecase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5708
     * <code>char</code>, the same <code>char</code> value will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5709
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5710
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5711
     * Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5712
     * <code>Character.isTitleCase(Character.toTitleCase(ch))</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5713
     * does not always return <code>true</code> for some ranges of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5714
     * characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5715
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5716
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5717
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5718
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5719
     * the {@link #toTitleCase(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5720
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5721
     * @param   ch   the character to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5722
     * @return  the titlecase equivalent of the character, if any;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5723
     *          otherwise, the character itself.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5724
     * @see     Character#isTitleCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5725
     * @see     Character#toLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5726
     * @see     Character#toUpperCase(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5727
     * @since   1.0.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5728
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5729
    public static char toTitleCase(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5730
        return (char)toTitleCase((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5731
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5732
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5733
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5734
     * Converts the character (Unicode code point) argument to titlecase using case mapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5735
     * information from the UnicodeData file. If a character has no
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5736
     * explicit titlecase mapping and is not itself a titlecase char
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5737
     * according to UnicodeData, then the uppercase mapping is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5738
     * returned as an equivalent titlecase mapping. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5739
     * character argument is already a titlecase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5740
     * character, the same character value will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5741
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5742
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5743
     * <p>Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5744
     * <code>Character.isTitleCase(Character.toTitleCase(codePoint))</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5745
     * does not always return <code>true</code> for some ranges of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5746
     * characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5747
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5748
     * @param   codePoint   the character (Unicode code point) to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5749
     * @return  the titlecase equivalent of the character, if any;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5750
     *          otherwise, the character itself.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5751
     * @see     Character#isTitleCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5752
     * @see     Character#toLowerCase(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5753
     * @see     Character#toUpperCase(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5754
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5755
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5756
    public static int toTitleCase(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5757
        return CharacterData.of(codePoint).toTitleCase(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5758
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5759
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5760
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5761
     * Returns the numeric value of the character <code>ch</code> in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5762
     * specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5763
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5764
     * If the radix is not in the range <code>MIN_RADIX</code>&nbsp;&lt;=
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5765
     * <code>radix</code>&nbsp;&lt;= <code>MAX_RADIX</code> or if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5766
     * value of <code>ch</code> is not a valid digit in the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5767
     * radix, <code>-1</code> is returned. A character is a valid digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5768
     * if at least one of the following is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5769
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5770
     * <li>The method <code>isDigit</code> is <code>true</code> of the character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5771
     *     and the Unicode decimal digit value of the character (or its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5772
     *     single-character decomposition) is less than the specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5773
     *     In this case the decimal digit value is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5774
     * <li>The character is one of the uppercase Latin letters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5775
     *     <code>'A'</code> through <code>'Z'</code> and its code is less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5776
     *     <code>radix&nbsp;+ 'A'&nbsp;-&nbsp;10</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5777
     *     In this case, <code>ch&nbsp;- 'A'&nbsp;+&nbsp;10</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5778
     *     is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5779
     * <li>The character is one of the lowercase Latin letters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5780
     *     <code>'a'</code> through <code>'z'</code> and its code is less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5781
     *     <code>radix&nbsp;+ 'a'&nbsp;-&nbsp;10</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5782
     *     In this case, <code>ch&nbsp;- 'a'&nbsp;+&nbsp;10</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5783
     *     is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5784
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5785
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5786
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5787
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5788
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5789
     * the {@link #digit(int, int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5790
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5791
     * @param   ch      the character to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5792
     * @param   radix   the radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5793
     * @return  the numeric value represented by the character in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5794
     *          specified radix.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5795
     * @see     Character#forDigit(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5796
     * @see     Character#isDigit(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5797
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5798
    public static int digit(char ch, int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5799
        return digit((int)ch, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5800
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5801
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5802
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5803
     * Returns the numeric value of the specified character (Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5804
     * code point) in the specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5805
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5806
     * <p>If the radix is not in the range <code>MIN_RADIX</code>&nbsp;&lt;=
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5807
     * <code>radix</code>&nbsp;&lt;= <code>MAX_RADIX</code> or if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5808
     * character is not a valid digit in the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5809
     * radix, <code>-1</code> is returned. A character is a valid digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5810
     * if at least one of the following is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5811
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5812
     * <li>The method {@link #isDigit(int) isDigit(codePoint)} is <code>true</code> of the character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5813
     *     and the Unicode decimal digit value of the character (or its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5814
     *     single-character decomposition) is less than the specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5815
     *     In this case the decimal digit value is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5816
     * <li>The character is one of the uppercase Latin letters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5817
     *     <code>'A'</code> through <code>'Z'</code> and its code is less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5818
     *     <code>radix&nbsp;+ 'A'&nbsp;-&nbsp;10</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5819
     *     In this case, <code>ch&nbsp;- 'A'&nbsp;+&nbsp;10</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5820
     *     is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5821
     * <li>The character is one of the lowercase Latin letters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5822
     *     <code>'a'</code> through <code>'z'</code> and its code is less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5823
     *     <code>radix&nbsp;+ 'a'&nbsp;-&nbsp;10</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5824
     *     In this case, <code>ch&nbsp;- 'a'&nbsp;+&nbsp;10</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5825
     *     is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5826
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5827
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5828
     * @param   codePoint the character (Unicode code point) to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5829
     * @param   radix   the radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5830
     * @return  the numeric value represented by the character in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5831
     *          specified radix.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5832
     * @see     Character#forDigit(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5833
     * @see     Character#isDigit(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5834
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5835
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5836
    public static int digit(int codePoint, int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5837
        return CharacterData.of(codePoint).digit(codePoint, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5838
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5839
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5840
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5841
     * Returns the <code>int</code> value that the specified Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5842
     * character represents. For example, the character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5843
     * <code>'&#92;u216C'</code> (the roman numeral fifty) will return
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5844
     * an int with a value of 50.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5845
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5846
     * The letters A-Z in their uppercase (<code>'&#92;u0041'</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5847
     * <code>'&#92;u005A'</code>), lowercase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5848
     * (<code>'&#92;u0061'</code> through <code>'&#92;u007A'</code>), and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5849
     * full width variant (<code>'&#92;uFF21'</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5850
     * <code>'&#92;uFF3A'</code> and <code>'&#92;uFF41'</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5851
     * <code>'&#92;uFF5A'</code>) forms have numeric values from 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5852
     * through 35. This is independent of the Unicode specification,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5853
     * which does not assign numeric values to these <code>char</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5854
     * values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5855
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5856
     * If the character does not have a numeric value, then -1 is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5857
     * If the character has a numeric value that cannot be represented as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5858
     * nonnegative integer (for example, a fractional value), then -2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5859
     * is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5860
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5861
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5862
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5863
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5864
     * the {@link #getNumericValue(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5865
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5866
     * @param   ch      the character to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5867
     * @return  the numeric value of the character, as a nonnegative <code>int</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5868
     *           value; -2 if the character has a numeric value that is not a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5869
     *          nonnegative integer; -1 if the character has no numeric value.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5870
     * @see     Character#forDigit(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5871
     * @see     Character#isDigit(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5872
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5873
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5874
    public static int getNumericValue(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5875
        return getNumericValue((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5876
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5877
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5878
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5879
     * Returns the <code>int</code> value that the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5880
     * character (Unicode code point) represents. For example, the character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5881
     * <code>'&#92;u216C'</code> (the Roman numeral fifty) will return
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5882
     * an <code>int</code> with a value of 50.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5883
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5884
     * The letters A-Z in their uppercase (<code>'&#92;u0041'</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5885
     * <code>'&#92;u005A'</code>), lowercase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5886
     * (<code>'&#92;u0061'</code> through <code>'&#92;u007A'</code>), and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5887
     * full width variant (<code>'&#92;uFF21'</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5888
     * <code>'&#92;uFF3A'</code> and <code>'&#92;uFF41'</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5889
     * <code>'&#92;uFF5A'</code>) forms have numeric values from 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5890
     * through 35. This is independent of the Unicode specification,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5891
     * which does not assign numeric values to these <code>char</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5892
     * values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5893
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5894
     * If the character does not have a numeric value, then -1 is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5895
     * If the character has a numeric value that cannot be represented as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5896
     * nonnegative integer (for example, a fractional value), then -2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5897
     * is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5898
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5899
     * @param   codePoint the character (Unicode code point) to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5900
     * @return  the numeric value of the character, as a nonnegative <code>int</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5901
     *          value; -2 if the character has a numeric value that is not a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5902
     *          nonnegative integer; -1 if the character has no numeric value.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5903
     * @see     Character#forDigit(int, int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5904
     * @see     Character#isDigit(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5905
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5906
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5907
    public static int getNumericValue(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5908
        return CharacterData.of(codePoint).getNumericValue(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5909
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5910
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5911
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5912
     * Determines if the specified character is ISO-LATIN-1 white space.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5913
     * This method returns <code>true</code> for the following five
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5914
     * characters only:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5915
     * <table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5916
     * <tr><td><code>'\t'</code></td>            <td><code>'&#92;u0009'</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5917
     *     <td><code>HORIZONTAL TABULATION</code></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5918
     * <tr><td><code>'\n'</code></td>            <td><code>'&#92;u000A'</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5919
     *     <td><code>NEW LINE</code></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5920
     * <tr><td><code>'\f'</code></td>            <td><code>'&#92;u000C'</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5921
     *     <td><code>FORM FEED</code></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5922
     * <tr><td><code>'\r'</code></td>            <td><code>'&#92;u000D'</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5923
     *     <td><code>CARRIAGE RETURN</code></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5924
     * <tr><td><code>'&nbsp;'</code></td>  <td><code>'&#92;u0020'</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5925
     *     <td><code>SPACE</code></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5926
     * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5927
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5928
     * @param      ch   the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5929
     * @return     <code>true</code> if the character is ISO-LATIN-1 white
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5930
     *             space; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5931
     * @see        Character#isSpaceChar(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5932
     * @see        Character#isWhitespace(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5933
     * @deprecated Replaced by isWhitespace(char).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5934
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5935
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5936
    public static boolean isSpace(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5937
        return (ch <= 0x0020) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5938
            (((((1L << 0x0009) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5939
            (1L << 0x000A) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5940
            (1L << 0x000C) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5941
            (1L << 0x000D) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5942
            (1L << 0x0020)) >> ch) & 1L) != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5943
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5944
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5945
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5946
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5947
     * Determines if the specified character is a Unicode space character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5948
     * A character is considered to be a space character if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5949
     * it is specified to be a space character by the Unicode standard. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5950
     * method returns true if the character's general category type is any of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5951
     * the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5952
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5953
     * <li> <code>SPACE_SEPARATOR</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5954
     * <li> <code>LINE_SEPARATOR</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5955
     * <li> <code>PARAGRAPH_SEPARATOR</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5956
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5957
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5958
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5959
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5960
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5961
     * the {@link #isSpaceChar(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5962
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5963
     * @param   ch      the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5964
     * @return  <code>true</code> if the character is a space character;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5965
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5966
     * @see     Character#isWhitespace(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5967
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5968
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5969
    public static boolean isSpaceChar(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5970
        return isSpaceChar((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5971
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5972
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5973
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5974
     * Determines if the specified character (Unicode code point) is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5975
     * Unicode space character.  A character is considered to be a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5976
     * space character if and only if it is specified to be a space
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5977
     * character by the Unicode standard. This method returns true if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5978
     * the character's general category type is any of the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5979
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5980
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5981
     * <li> {@link #SPACE_SEPARATOR}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5982
     * <li> {@link #LINE_SEPARATOR}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5983
     * <li> {@link #PARAGRAPH_SEPARATOR}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5984
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5985
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5986
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5987
     * @return  <code>true</code> if the character is a space character;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5988
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  5989
     * @see     Character#isWhitespace(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5990
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5991
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5992
    public static boolean isSpaceChar(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5993
        return ((((1 << Character.SPACE_SEPARATOR) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5994
                  (1 << Character.LINE_SEPARATOR) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5995
                  (1 << Character.PARAGRAPH_SEPARATOR)) >> getType(codePoint)) & 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5996
            != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5997
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5998
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5999
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6000
     * Determines if the specified character is white space according to Java.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6001
     * A character is a Java whitespace character if and only if it satisfies
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6002
     * one of the following criteria:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6003
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6004
     * <li> It is a Unicode space character (<code>SPACE_SEPARATOR</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6005
     *      <code>LINE_SEPARATOR</code>, or <code>PARAGRAPH_SEPARATOR</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6006
     *      but is not also a non-breaking space (<code>'&#92;u00A0'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6007
     *      <code>'&#92;u2007'</code>, <code>'&#92;u202F'</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6008
     * <li> It is <code>'&#92;u0009'</code>, HORIZONTAL TABULATION.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6009
     * <li> It is <code>'&#92;u000A'</code>, LINE FEED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6010
     * <li> It is <code>'&#92;u000B'</code>, VERTICAL TABULATION.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6011
     * <li> It is <code>'&#92;u000C'</code>, FORM FEED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6012
     * <li> It is <code>'&#92;u000D'</code>, CARRIAGE RETURN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6013
     * <li> It is <code>'&#92;u001C'</code>, FILE SEPARATOR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6014
     * <li> It is <code>'&#92;u001D'</code>, GROUP SEPARATOR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6015
     * <li> It is <code>'&#92;u001E'</code>, RECORD SEPARATOR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6016
     * <li> It is <code>'&#92;u001F'</code>, UNIT SEPARATOR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6017
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6018
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6019
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6020
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6021
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6022
     * the {@link #isWhitespace(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6023
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6024
     * @param   ch the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6025
     * @return  <code>true</code> if the character is a Java whitespace
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6026
     *          character; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6027
     * @see     Character#isSpaceChar(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6028
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6029
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6030
    public static boolean isWhitespace(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6031
        return isWhitespace((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6032
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6033
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6034
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6035
     * Determines if the specified character (Unicode code point) is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6036
     * white space according to Java.  A character is a Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6037
     * whitespace character if and only if it satisfies one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6038
     * following criteria:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6039
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6040
     * <li> It is a Unicode space character ({@link #SPACE_SEPARATOR},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6041
     *      {@link #LINE_SEPARATOR}, or {@link #PARAGRAPH_SEPARATOR})
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6042
     *      but is not also a non-breaking space (<code>'&#92;u00A0'</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6043
     *      <code>'&#92;u2007'</code>, <code>'&#92;u202F'</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6044
     * <li> It is <code>'&#92;u0009'</code>, HORIZONTAL TABULATION.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6045
     * <li> It is <code>'&#92;u000A'</code>, LINE FEED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6046
     * <li> It is <code>'&#92;u000B'</code>, VERTICAL TABULATION.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6047
     * <li> It is <code>'&#92;u000C'</code>, FORM FEED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6048
     * <li> It is <code>'&#92;u000D'</code>, CARRIAGE RETURN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6049
     * <li> It is <code>'&#92;u001C'</code>, FILE SEPARATOR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6050
     * <li> It is <code>'&#92;u001D'</code>, GROUP SEPARATOR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6051
     * <li> It is <code>'&#92;u001E'</code>, RECORD SEPARATOR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6052
     * <li> It is <code>'&#92;u001F'</code>, UNIT SEPARATOR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6053
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6054
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6055
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6056
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6057
     * @return  <code>true</code> if the character is a Java whitespace
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6058
     *          character; <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6059
     * @see     Character#isSpaceChar(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6060
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6061
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6062
    public static boolean isWhitespace(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6063
        return CharacterData.of(codePoint).isWhitespace(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6064
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6066
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6067
     * Determines if the specified character is an ISO control
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6068
     * character.  A character is considered to be an ISO control
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6069
     * character if its code is in the range <code>'&#92;u0000'</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6070
     * through <code>'&#92;u001F'</code> or in the range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6071
     * <code>'&#92;u007F'</code> through <code>'&#92;u009F'</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6072
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6073
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6074
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6075
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6076
     * the {@link #isISOControl(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6077
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6078
     * @param   ch      the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6079
     * @return  <code>true</code> if the character is an ISO control character;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6080
     *          <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6081
     *
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6082
     * @see     Character#isSpaceChar(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6083
     * @see     Character#isWhitespace(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6084
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6085
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6086
    public static boolean isISOControl(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6087
        return isISOControl((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6088
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6089
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6090
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6091
     * Determines if the referenced character (Unicode code point) is an ISO control
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6092
     * character.  A character is considered to be an ISO control
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6093
     * character if its code is in the range <code>'&#92;u0000'</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6094
     * through <code>'&#92;u001F'</code> or in the range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6095
     * <code>'&#92;u007F'</code> through <code>'&#92;u009F'</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6096
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6097
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6098
     * @return  <code>true</code> if the character is an ISO control character;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6099
     *          <code>false</code> otherwise.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6100
     * @see     Character#isSpaceChar(int)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6101
     * @see     Character#isWhitespace(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6102
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6104
    public static boolean isISOControl(int codePoint) {
5985
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  6105
        // Optimized form of:
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  6106
        //     (codePoint >= 0x00 && codePoint <= 0x1F) ||
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  6107
        //     (codePoint >= 0x7F && codePoint <= 0x9F);
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  6108
        return codePoint <= 0x9F &&
f98ac682b34c 6934268: Better implementation of Character.isValidCodePoint
martin
parents: 5627
diff changeset
  6109
            (codePoint >= 0x7F || (codePoint >>> 5 == 0));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6111
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6112
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6113
     * Returns a value indicating a character's general category.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6114
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6115
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6116
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6117
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6118
     * the {@link #getType(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6120
     * @param   ch      the character to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6121
     * @return  a value of type <code>int</code> representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6122
     *          character's general category.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6123
     * @see     Character#COMBINING_SPACING_MARK
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6124
     * @see     Character#CONNECTOR_PUNCTUATION
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6125
     * @see     Character#CONTROL
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6126
     * @see     Character#CURRENCY_SYMBOL
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6127
     * @see     Character#DASH_PUNCTUATION
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6128
     * @see     Character#DECIMAL_DIGIT_NUMBER
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6129
     * @see     Character#ENCLOSING_MARK
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6130
     * @see     Character#END_PUNCTUATION
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6131
     * @see     Character#FINAL_QUOTE_PUNCTUATION
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6132
     * @see     Character#FORMAT
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6133
     * @see     Character#INITIAL_QUOTE_PUNCTUATION
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6134
     * @see     Character#LETTER_NUMBER
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6135
     * @see     Character#LINE_SEPARATOR
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6136
     * @see     Character#LOWERCASE_LETTER
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6137
     * @see     Character#MATH_SYMBOL
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6138
     * @see     Character#MODIFIER_LETTER
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6139
     * @see     Character#MODIFIER_SYMBOL
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6140
     * @see     Character#NON_SPACING_MARK
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6141
     * @see     Character#OTHER_LETTER
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6142
     * @see     Character#OTHER_NUMBER
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6143
     * @see     Character#OTHER_PUNCTUATION
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6144
     * @see     Character#OTHER_SYMBOL
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6145
     * @see     Character#PARAGRAPH_SEPARATOR
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6146
     * @see     Character#PRIVATE_USE
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6147
     * @see     Character#SPACE_SEPARATOR
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6148
     * @see     Character#START_PUNCTUATION
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6149
     * @see     Character#SURROGATE
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6150
     * @see     Character#TITLECASE_LETTER
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6151
     * @see     Character#UNASSIGNED
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6152
     * @see     Character#UPPERCASE_LETTER
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6153
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6154
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6155
    public static int getType(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6156
        return getType((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6158
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6160
     * Returns a value indicating a character's general category.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6162
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6163
     * @return  a value of type <code>int</code> representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6164
     *          character's general category.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6165
     * @see     Character#COMBINING_SPACING_MARK COMBINING_SPACING_MARK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6166
     * @see     Character#CONNECTOR_PUNCTUATION CONNECTOR_PUNCTUATION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6167
     * @see     Character#CONTROL CONTROL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6168
     * @see     Character#CURRENCY_SYMBOL CURRENCY_SYMBOL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6169
     * @see     Character#DASH_PUNCTUATION DASH_PUNCTUATION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6170
     * @see     Character#DECIMAL_DIGIT_NUMBER DECIMAL_DIGIT_NUMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6171
     * @see     Character#ENCLOSING_MARK ENCLOSING_MARK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6172
     * @see     Character#END_PUNCTUATION END_PUNCTUATION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6173
     * @see     Character#FINAL_QUOTE_PUNCTUATION FINAL_QUOTE_PUNCTUATION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6174
     * @see     Character#FORMAT FORMAT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6175
     * @see     Character#INITIAL_QUOTE_PUNCTUATION INITIAL_QUOTE_PUNCTUATION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6176
     * @see     Character#LETTER_NUMBER LETTER_NUMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6177
     * @see     Character#LINE_SEPARATOR LINE_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6178
     * @see     Character#LOWERCASE_LETTER LOWERCASE_LETTER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6179
     * @see     Character#MATH_SYMBOL MATH_SYMBOL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6180
     * @see     Character#MODIFIER_LETTER MODIFIER_LETTER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6181
     * @see     Character#MODIFIER_SYMBOL MODIFIER_SYMBOL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6182
     * @see     Character#NON_SPACING_MARK NON_SPACING_MARK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6183
     * @see     Character#OTHER_LETTER OTHER_LETTER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6184
     * @see     Character#OTHER_NUMBER OTHER_NUMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6185
     * @see     Character#OTHER_PUNCTUATION OTHER_PUNCTUATION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6186
     * @see     Character#OTHER_SYMBOL OTHER_SYMBOL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6187
     * @see     Character#PARAGRAPH_SEPARATOR PARAGRAPH_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6188
     * @see     Character#PRIVATE_USE PRIVATE_USE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6189
     * @see     Character#SPACE_SEPARATOR SPACE_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6190
     * @see     Character#START_PUNCTUATION START_PUNCTUATION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6191
     * @see     Character#SURROGATE SURROGATE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6192
     * @see     Character#TITLECASE_LETTER TITLECASE_LETTER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6193
     * @see     Character#UNASSIGNED UNASSIGNED
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6194
     * @see     Character#UPPERCASE_LETTER UPPERCASE_LETTER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6195
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6196
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6197
    public static int getType(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6198
        return CharacterData.of(codePoint).getType(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6200
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6201
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6202
     * Determines the character representation for a specific digit in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6203
     * the specified radix. If the value of <code>radix</code> is not a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6204
     * valid radix, or the value of <code>digit</code> is not a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6205
     * digit in the specified radix, the null character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6206
     * (<code>'&#92;u0000'</code>) is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6207
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6208
     * The <code>radix</code> argument is valid if it is greater than or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6209
     * equal to <code>MIN_RADIX</code> and less than or equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6210
     * <code>MAX_RADIX</code>. The <code>digit</code> argument is valid if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6211
     * <code>0&nbsp;&lt;=digit&nbsp;&lt;&nbsp;radix</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6212
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6213
     * If the digit is less than 10, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6214
     * <code>'0'&nbsp;+ digit</code> is returned. Otherwise, the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6215
     * <code>'a'&nbsp;+ digit&nbsp;-&nbsp;10</code> is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6216
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6217
     * @param   digit   the number to convert to a character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6218
     * @param   radix   the radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6219
     * @return  the <code>char</code> representation of the specified digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6220
     *          in the specified radix.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6221
     * @see     Character#MIN_RADIX
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6222
     * @see     Character#MAX_RADIX
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6223
     * @see     Character#digit(char, int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6224
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6225
    public static char forDigit(int digit, int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6226
        if ((digit >= radix) || (digit < 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6227
            return '\0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6228
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6229
        if ((radix < Character.MIN_RADIX) || (radix > Character.MAX_RADIX)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6230
            return '\0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6231
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6232
        if (digit < 10) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6233
            return (char)('0' + digit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6235
        return (char)('a' - 10 + digit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6237
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6238
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6239
     * Returns the Unicode directionality property for the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6240
     * character.  Character directionality is used to calculate the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6241
     * visual ordering of text. The directionality value of undefined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6242
     * <code>char</code> values is <code>DIRECTIONALITY_UNDEFINED</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6243
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6244
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6245
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6246
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6247
     * the {@link #getDirectionality(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6248
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6249
     * @param  ch <code>char</code> for which the directionality property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6250
     *            is requested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6251
     * @return the directionality property of the <code>char</code> value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6252
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6253
     * @see Character#DIRECTIONALITY_UNDEFINED
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6254
     * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6255
     * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6256
     * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6257
     * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6258
     * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6259
     * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6260
     * @see Character#DIRECTIONALITY_ARABIC_NUMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6261
     * @see Character#DIRECTIONALITY_COMMON_NUMBER_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6262
     * @see Character#DIRECTIONALITY_NONSPACING_MARK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6263
     * @see Character#DIRECTIONALITY_BOUNDARY_NEUTRAL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6264
     * @see Character#DIRECTIONALITY_PARAGRAPH_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6265
     * @see Character#DIRECTIONALITY_SEGMENT_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6266
     * @see Character#DIRECTIONALITY_WHITESPACE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6267
     * @see Character#DIRECTIONALITY_OTHER_NEUTRALS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6268
     * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6269
     * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6270
     * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6271
     * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6272
     * @see Character#DIRECTIONALITY_POP_DIRECTIONAL_FORMAT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6273
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6274
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6275
    public static byte getDirectionality(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6276
        return getDirectionality((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6278
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6279
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6280
     * Returns the Unicode directionality property for the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6281
     * character (Unicode code point).  Character directionality is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6282
     * used to calculate the visual ordering of text. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6283
     * directionality value of undefined character is {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6284
     * #DIRECTIONALITY_UNDEFINED}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6285
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6286
     * @param   codePoint the character (Unicode code point) for which
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6287
     *          the directionality property is requested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6288
     * @return the directionality property of the character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6290
     * @see Character#DIRECTIONALITY_UNDEFINED DIRECTIONALITY_UNDEFINED
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6291
     * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT DIRECTIONALITY_LEFT_TO_RIGHT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6292
     * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT DIRECTIONALITY_RIGHT_TO_LEFT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6293
     * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6294
     * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER DIRECTIONALITY_EUROPEAN_NUMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6295
     * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6296
     * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6297
     * @see Character#DIRECTIONALITY_ARABIC_NUMBER DIRECTIONALITY_ARABIC_NUMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6298
     * @see Character#DIRECTIONALITY_COMMON_NUMBER_SEPARATOR DIRECTIONALITY_COMMON_NUMBER_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6299
     * @see Character#DIRECTIONALITY_NONSPACING_MARK DIRECTIONALITY_NONSPACING_MARK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6300
     * @see Character#DIRECTIONALITY_BOUNDARY_NEUTRAL DIRECTIONALITY_BOUNDARY_NEUTRAL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6301
     * @see Character#DIRECTIONALITY_PARAGRAPH_SEPARATOR DIRECTIONALITY_PARAGRAPH_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6302
     * @see Character#DIRECTIONALITY_SEGMENT_SEPARATOR DIRECTIONALITY_SEGMENT_SEPARATOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6303
     * @see Character#DIRECTIONALITY_WHITESPACE DIRECTIONALITY_WHITESPACE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6304
     * @see Character#DIRECTIONALITY_OTHER_NEUTRALS DIRECTIONALITY_OTHER_NEUTRALS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6305
     * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6306
     * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6307
     * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6308
     * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6309
     * @see Character#DIRECTIONALITY_POP_DIRECTIONAL_FORMAT DIRECTIONALITY_POP_DIRECTIONAL_FORMAT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6310
     * @since    1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6311
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6312
    public static byte getDirectionality(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6313
        return CharacterData.of(codePoint).getDirectionality(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6314
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6315
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6316
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6317
     * Determines whether the character is mirrored according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6318
     * Unicode specification.  Mirrored characters should have their
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6319
     * glyphs horizontally mirrored when displayed in text that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6320
     * right-to-left.  For example, <code>'&#92;u0028'</code> LEFT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6321
     * PARENTHESIS is semantically defined to be an <i>opening
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6322
     * parenthesis</i>.  This will appear as a "(" in text that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6323
     * left-to-right but as a ")" in text that is right-to-left.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6324
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6325
     * <p><b>Note:</b> This method cannot handle <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6326
     * href="#supplementary"> supplementary characters</a>. To support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6327
     * all Unicode characters, including supplementary characters, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6328
     * the {@link #isMirrored(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6329
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6330
     * @param  ch <code>char</code> for which the mirrored property is requested
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6331
     * @return <code>true</code> if the char is mirrored, <code>false</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6332
     *         if the <code>char</code> is not mirrored or is not defined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6333
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6334
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6335
    public static boolean isMirrored(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6336
        return isMirrored((int)ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6337
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6338
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6339
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6340
     * Determines whether the specified character (Unicode code point)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6341
     * is mirrored according to the Unicode specification.  Mirrored
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6342
     * characters should have their glyphs horizontally mirrored when
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6343
     * displayed in text that is right-to-left.  For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6344
     * <code>'&#92;u0028'</code> LEFT PARENTHESIS is semantically
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6345
     * defined to be an <i>opening parenthesis</i>.  This will appear
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6346
     * as a "(" in text that is left-to-right but as a ")" in text
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6347
     * that is right-to-left.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6348
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6349
     * @param   codePoint the character (Unicode code point) to be tested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6350
     * @return  <code>true</code> if the character is mirrored, <code>false</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6351
     *          if the character is not mirrored or is not defined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6352
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6353
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6354
    public static boolean isMirrored(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6355
        return CharacterData.of(codePoint).isMirrored(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6356
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6357
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6358
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6359
     * Compares two <code>Character</code> objects numerically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6360
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6361
     * @param   anotherCharacter   the <code>Character</code> to be compared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6362
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6363
     * @return  the value <code>0</code> if the argument <code>Character</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6364
     *          is equal to this <code>Character</code>; a value less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6365
     *          <code>0</code> if this <code>Character</code> is numerically less
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6366
     *          than the <code>Character</code> argument; and a value greater than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6367
     *          <code>0</code> if this <code>Character</code> is numerically greater
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6368
     *          than the <code>Character</code> argument (unsigned comparison).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6369
     *          Note that this is strictly a numerical comparison; it is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6370
     *          locale-dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6371
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6372
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6373
    public int compareTo(Character anotherCharacter) {
3943
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6374
        return compare(this.value, anotherCharacter.value);
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6375
    }
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6376
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6377
    /**
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6378
     * Compares two {@code char} values numerically.
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6379
     * The value returned is identical to what would be returned by:
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6380
     * <pre>
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6381
     *    Character.valueOf(x).compareTo(Character.valueOf(y))
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6382
     * </pre>
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6383
     *
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6384
     * @param  x the first {@code char} to compare
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6385
     * @param  y the second {@code char} to compare
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6386
     * @return the value {@code 0} if {@code x == y};
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6387
     *         a value less than {@code 0} if {@code x < y}; and
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6388
     *         a value greater than {@code 0} if {@code x > y}
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6389
     * @since 1.7
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6390
     */
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6391
    public static int compare(char x, char y) {
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3942
diff changeset
  6392
        return x - y;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6394
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6395
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6396
     * Converts the character (Unicode code point) argument to uppercase using
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6397
     * information from the UnicodeData file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6398
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6399
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6400
     * @param   codePoint   the character (Unicode code point) to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6401
     * @return  either the uppercase equivalent of the character, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6402
     *          any, or an error flag (<code>Character.ERROR</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6403
     *          that indicates that a 1:M <code>char</code> mapping exists.
5990
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6404
     * @see     Character#isLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6405
     * @see     Character#isUpperCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6406
     * @see     Character#toLowerCase(char)
19cae21ed5e6 6934270: Remove javac warnings from Character.java
martin
parents: 5989
diff changeset
  6407
     * @see     Character#toTitleCase(char)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6408
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6409
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6410
    static int toUpperCaseEx(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6411
        assert isValidCodePoint(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6412
        return CharacterData.of(codePoint).toUpperCaseEx(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6414
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6415
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6416
     * Converts the character (Unicode code point) argument to uppercase using case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6417
     * mapping information from the SpecialCasing file in the Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6418
     * specification. If a character has no explicit uppercase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6419
     * mapping, then the <code>char</code> itself is returned in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6420
     * <code>char[]</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6421
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6422
     * @param   codePoint   the character (Unicode code point) to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6423
     * @return a <code>char[]</code> with the uppercased character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6424
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6425
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6426
    static char[] toUpperCaseCharArray(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6427
        // As of Unicode 4.0, 1:M uppercasings only happen in the BMP.
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5985
diff changeset
  6428
        assert isBmpCodePoint(codePoint);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6429
        return CharacterData.of(codePoint).toUpperCaseCharArray(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6430
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6431
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6432
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6433
     * The number of bits used to represent a <tt>char</tt> value in unsigned
3714
6a4eb8f53f91 6860431: Character.isSurrogate(char ch)
martin
parents: 3505
diff changeset
  6434
     * binary form, constant {@code 16}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6435
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6436
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6437
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6438
    public static final int SIZE = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6439
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6440
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6441
     * Returns the value obtained by reversing the order of the bytes in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6442
     * specified <tt>char</tt> value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6443
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6444
     * @return the value obtained by reversing (or, equivalently, swapping)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6445
     *     the bytes in the specified <tt>char</tt> value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6446
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6447
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6448
    public static char reverseBytes(char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6449
        return (char) (((ch & 0xFF00) >> 8) | (ch << 8));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6450
    }
5610
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6451
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6452
    /**
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6453
     * Returns the Unicode name of the specified character
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6454
     * <code>codePoint</code>, or null if the code point is
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6455
     * {@link #UNASSIGNED unassigned}.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6456
     * <p>
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6457
     * Note: if the specified character is not assigned a name by
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6458
     * the <i>UnicodeData</i> file (part of the Unicode Character
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6459
     * Database maintained by the Unicode Consortium), the returned
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6460
     * name is the same as the result of expression
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6461
     *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6462
     * <blockquote><code>
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6463
     *     Character.UnicodeBlock.of(codePoint)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6464
     *                           .toString()
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6465
     *                           .replace('_', ' ')
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6466
     *     + " "
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6467
     *     + Integer.toHexString(codePoint).toUpperCase(Locale.ENGLISH);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6468
     *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6469
     * </code></blockquote>
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6470
     *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6471
     * @param  codePoint the character (Unicode code point)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6472
     *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6473
     * @return the Unicode name of the specified character, or null if
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6474
     *         the code point is unassigned.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6475
     *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6476
     * @exception IllegalArgumentException if the specified
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6477
     *            <code>codePoint</code> is not a valid Unicode
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6478
     *            code point.
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6479
     *
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6480
     * @since 1.7
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6481
     */
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6482
    public static String getName(int codePoint) {
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6483
        if (!isValidCodePoint(codePoint)) {
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6484
            throw new IllegalArgumentException();
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6485
        }
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6486
        String name = CharacterName.get(codePoint);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6487
        if (name != null)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6488
            return name;
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6489
        if (getType(codePoint) == UNASSIGNED)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6490
            return null;
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6491
        UnicodeBlock block = UnicodeBlock.of(codePoint);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6492
        if (block != null)
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6493
            return block.toString().replace('_', ' ') + " "
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6494
                   + Integer.toHexString(codePoint).toUpperCase(Locale.ENGLISH);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6495
        // should never come here
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6496
        return Integer.toHexString(codePoint).toUpperCase(Locale.ENGLISH);
fd2427610c7f 6945564: Unicode script support in Character class
sherman
parents: 3943
diff changeset
  6497
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  6498
}