0N/A/*
3081N/A * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage java.lang;
2566N/A
2401N/Aimport java.util.Arrays;
0N/Aimport java.util.Map;
0N/Aimport java.util.HashMap;
0N/Aimport java.util.Locale;
0N/A
0N/A/**
3827N/A * The {@code Character} class wraps a value of the primitive
3827N/A * type {@code char} in an object. An object of type
3827N/A * {@code Character} contains a single field whose type is
3827N/A * {@code char}.
0N/A * <p>
0N/A * In addition, this class provides several methods for determining
0N/A * a character's category (lowercase letter, digit, etc.) and for converting
0N/A * characters from uppercase to lowercase and vice versa.
0N/A * <p>
3081N/A * Character information is based on the Unicode Standard, version 6.0.0.
0N/A * <p>
3827N/A * The methods and data of class {@code Character} are defined by
0N/A * the information in the <i>UnicodeData</i> file that is part of the
0N/A * Unicode Character Database maintained by the Unicode
0N/A * Consortium. This file specifies various properties including name
0N/A * and general category for every defined Unicode code point or
0N/A * character range.
0N/A * <p>
0N/A * The file and its description are available from the Unicode Consortium at:
0N/A * <ul>
0N/A * <li><a href="http://www.unicode.org">http://www.unicode.org</a>
0N/A * </ul>
0N/A *
0N/A * <h4><a name="unicode">Unicode Character Representations</a></h4>
0N/A *
3827N/A * <p>The {@code char} data type (and therefore the value that a
3827N/A * {@code Character} object encapsulates) are based on the
0N/A * original Unicode specification, which defined characters as
4138N/A * fixed-width 16-bit entities. The Unicode Standard has since been
0N/A * changed to allow for characters whose representation requires more
0N/A * than 16 bits. The range of legal <em>code point</em>s is now
0N/A * U+0000 to U+10FFFF, known as <em>Unicode scalar value</em>.
0N/A * (Refer to the <a
0N/A * href="http://www.unicode.org/reports/tr27/#notation"><i>
0N/A * definition</i></a> of the U+<i>n</i> notation in the Unicode
4138N/A * Standard.)
0N/A *
2562N/A * <p><a name="BMP">The set of characters from U+0000 to U+FFFF is
2562N/A * sometimes referred to as the <em>Basic Multilingual Plane (BMP)</em>.
2562N/A * <a name="supplementary">Characters</a> whose code points are greater
0N/A * than U+FFFF are called <em>supplementary character</em>s. The Java
3827N/A * platform uses the UTF-16 representation in {@code char} arrays and
3827N/A * in the {@code String} and {@code StringBuffer} classes. In
2562N/A * this representation, supplementary characters are represented as a pair
3827N/A * of {@code char} values, the first from the <em>high-surrogates</em>
2562N/A * range, (&#92;uD800-&#92;uDBFF), the second from the
2562N/A * <em>low-surrogates</em> range (&#92;uDC00-&#92;uDFFF).
0N/A *
3827N/A * <p>A {@code char} value, therefore, represents Basic
0N/A * Multilingual Plane (BMP) code points, including the surrogate
0N/A * code points, or code units of the UTF-16 encoding. An
3827N/A * {@code int} value represents all Unicode code points,
0N/A * including supplementary code points. The lower (least significant)
3827N/A * 21 bits of {@code int} are used to represent Unicode code
0N/A * points and the upper (most significant) 11 bits must be zero.
0N/A * Unless otherwise specified, the behavior with respect to
3827N/A * supplementary characters and surrogate {@code char} values is
0N/A * as follows:
0N/A *
0N/A * <ul>
3827N/A * <li>The methods that only accept a {@code char} value cannot support
3827N/A * supplementary characters. They treat {@code char} values from the
0N/A * surrogate ranges as undefined characters. For example,
3827N/A * {@code Character.isLetter('\u005CuD840')} returns {@code false}, even though
0N/A * this specific value if followed by any low-surrogate value in a string
0N/A * would represent a letter.
0N/A *
3827N/A * <li>The methods that accept an {@code int} value support all
0N/A * Unicode characters, including supplementary characters. For
3827N/A * example, {@code Character.isLetter(0x2F81A)} returns
3827N/A * {@code true} because the code point value represents a letter
0N/A * (a CJK ideograph).
0N/A * </ul>
0N/A *
0N/A * <p>In the Java SE API documentation, <em>Unicode code point</em> is
0N/A * used for character values in the range between U+0000 and U+10FFFF,
0N/A * and <em>Unicode code unit</em> is used for 16-bit
3827N/A * {@code char} values that are code units of the <em>UTF-16</em>
0N/A * encoding. For more information on Unicode terminology, refer to the
0N/A * <a href="http://www.unicode.org/glossary/">Unicode Glossary</a>.
0N/A *
0N/A * @author Lee Boynton
0N/A * @author Guy Steele
0N/A * @author Akira Tanaka
2561N/A * @author Martin Buchholz
2561N/A * @author Ulf Zibis
0N/A * @since 1.0
0N/A */
0N/Apublic final
2566N/Aclass Character implements java.io.Serializable, Comparable<Character> {
0N/A /**
0N/A * The minimum radix available for conversion to and from strings.
0N/A * The constant value of this field is the smallest value permitted
0N/A * for the radix argument in radix-conversion methods such as the
3827N/A * {@code digit} method, the {@code forDigit} method, and the
3827N/A * {@code toString} method of class {@code Integer}.
0N/A *
2566N/A * @see Character#digit(char, int)
2566N/A * @see Character#forDigit(int, int)
2566N/A * @see Integer#toString(int, int)
2566N/A * @see Integer#valueOf(String)
0N/A */
0N/A public static final int MIN_RADIX = 2;
0N/A
0N/A /**
0N/A * The maximum radix available for conversion to and from strings.
0N/A * The constant value of this field is the largest value permitted
0N/A * for the radix argument in radix-conversion methods such as the
3827N/A * {@code digit} method, the {@code forDigit} method, and the
3827N/A * {@code toString} method of class {@code Integer}.
0N/A *
2566N/A * @see Character#digit(char, int)
2566N/A * @see Character#forDigit(int, int)
2566N/A * @see Integer#toString(int, int)
2566N/A * @see Integer#valueOf(String)
0N/A */
0N/A public static final int MAX_RADIX = 36;
0N/A
0N/A /**
0N/A * The constant value of this field is the smallest value of type
3827N/A * {@code char}, {@code '\u005Cu0000'}.
0N/A *
0N/A * @since 1.0.2
0N/A */
2566N/A public static final char MIN_VALUE = '\u0000';
0N/A
0N/A /**
0N/A * The constant value of this field is the largest value of type
3827N/A * {@code char}, {@code '\u005CuFFFF'}.
0N/A *
0N/A * @since 1.0.2
0N/A */
2566N/A public static final char MAX_VALUE = '\uFFFF';
0N/A
0N/A /**
3827N/A * The {@code Class} instance representing the primitive type
3827N/A * {@code char}.
0N/A *
0N/A * @since 1.1
0N/A */
2566N/A @SuppressWarnings("unchecked")
0N/A public static final Class<Character> TYPE = Class.getPrimitiveClass("char");
0N/A
2566N/A /*
2566N/A * Normative general types
2566N/A */
2566N/A
2566N/A /*
2566N/A * General character types
2566N/A */
2566N/A
2566N/A /**
2566N/A * General category "Cn" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte UNASSIGNED = 0;
2566N/A
2566N/A /**
2566N/A * General category "Lu" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte UPPERCASE_LETTER = 1;
2566N/A
2566N/A /**
2566N/A * General category "Ll" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte LOWERCASE_LETTER = 2;
2566N/A
2566N/A /**
2566N/A * General category "Lt" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte TITLECASE_LETTER = 3;
2566N/A
2566N/A /**
2566N/A * General category "Lm" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte MODIFIER_LETTER = 4;
2566N/A
2566N/A /**
2566N/A * General category "Lo" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte OTHER_LETTER = 5;
2566N/A
2566N/A /**
2566N/A * General category "Mn" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte NON_SPACING_MARK = 6;
2566N/A
2566N/A /**
2566N/A * General category "Me" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte ENCLOSING_MARK = 7;
2566N/A
2566N/A /**
2566N/A * General category "Mc" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte COMBINING_SPACING_MARK = 8;
2566N/A
2566N/A /**
2566N/A * General category "Nd" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte DECIMAL_DIGIT_NUMBER = 9;
2566N/A
2566N/A /**
2566N/A * General category "Nl" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte LETTER_NUMBER = 10;
2566N/A
2566N/A /**
2566N/A * General category "No" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte OTHER_NUMBER = 11;
2566N/A
2566N/A /**
2566N/A * General category "Zs" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte SPACE_SEPARATOR = 12;
2566N/A
2566N/A /**
2566N/A * General category "Zl" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte LINE_SEPARATOR = 13;
2566N/A
2566N/A /**
2566N/A * General category "Zp" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte PARAGRAPH_SEPARATOR = 14;
2566N/A
2566N/A /**
2566N/A * General category "Cc" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte CONTROL = 15;
2566N/A
2566N/A /**
2566N/A * General category "Cf" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte FORMAT = 16;
2566N/A
2566N/A /**
2566N/A * General category "Co" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte PRIVATE_USE = 18;
2566N/A
2566N/A /**
2566N/A * General category "Cs" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte SURROGATE = 19;
2566N/A
2566N/A /**
2566N/A * General category "Pd" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte DASH_PUNCTUATION = 20;
2566N/A
2566N/A /**
2566N/A * General category "Ps" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte START_PUNCTUATION = 21;
2566N/A
2566N/A /**
2566N/A * General category "Pe" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte END_PUNCTUATION = 22;
2566N/A
2566N/A /**
2566N/A * General category "Pc" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte CONNECTOR_PUNCTUATION = 23;
2566N/A
2566N/A /**
2566N/A * General category "Po" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte OTHER_PUNCTUATION = 24;
2566N/A
2566N/A /**
2566N/A * General category "Sm" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte MATH_SYMBOL = 25;
2566N/A
2566N/A /**
2566N/A * General category "Sc" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte CURRENCY_SYMBOL = 26;
2566N/A
2566N/A /**
2566N/A * General category "Sk" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte MODIFIER_SYMBOL = 27;
2566N/A
2566N/A /**
2566N/A * General category "So" in the Unicode specification.
2566N/A * @since 1.1
2566N/A */
2566N/A public static final byte OTHER_SYMBOL = 28;
2566N/A
2566N/A /**
2566N/A * General category "Pi" in the Unicode specification.
2566N/A * @since 1.4
2566N/A */
2566N/A public static final byte INITIAL_QUOTE_PUNCTUATION = 29;
2566N/A
2566N/A /**
2566N/A * General category "Pf" in the Unicode specification.
2566N/A * @since 1.4
2566N/A */
2566N/A public static final byte FINAL_QUOTE_PUNCTUATION = 30;
0N/A
0N/A /**
0N/A * Error flag. Use int (code point) to avoid confusion with U+FFFF.
0N/A */
2566N/A static final int ERROR = 0xFFFFFFFF;
0N/A
0N/A
0N/A /**
3827N/A * Undefined bidirectional character type. Undefined {@code char}
0N/A * values have undefined directionality in the Unicode specification.
0N/A * @since 1.4
0N/A */
2566N/A public static final byte DIRECTIONALITY_UNDEFINED = -1;
0N/A
0N/A /**
0N/A * Strong bidirectional character type "L" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_LEFT_TO_RIGHT = 0;
0N/A
0N/A /**
0N/A * Strong bidirectional character type "R" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_RIGHT_TO_LEFT = 1;
0N/A
0N/A /**
0N/A * Strong bidirectional character type "AL" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC = 2;
0N/A
0N/A /**
0N/A * Weak bidirectional character type "EN" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_EUROPEAN_NUMBER = 3;
0N/A
0N/A /**
0N/A * Weak bidirectional character type "ES" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR = 4;
0N/A
0N/A /**
0N/A * Weak bidirectional character type "ET" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR = 5;
0N/A
0N/A /**
0N/A * Weak bidirectional character type "AN" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_ARABIC_NUMBER = 6;
0N/A
0N/A /**
0N/A * Weak bidirectional character type "CS" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_COMMON_NUMBER_SEPARATOR = 7;
0N/A
0N/A /**
0N/A * Weak bidirectional character type "NSM" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_NONSPACING_MARK = 8;
0N/A
0N/A /**
0N/A * Weak bidirectional character type "BN" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_BOUNDARY_NEUTRAL = 9;
0N/A
0N/A /**
0N/A * Neutral bidirectional character type "B" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_PARAGRAPH_SEPARATOR = 10;
0N/A
0N/A /**
0N/A * Neutral bidirectional character type "S" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_SEGMENT_SEPARATOR = 11;
0N/A
0N/A /**
0N/A * Neutral bidirectional character type "WS" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_WHITESPACE = 12;
0N/A
0N/A /**
0N/A * Neutral bidirectional character type "ON" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_OTHER_NEUTRALS = 13;
0N/A
0N/A /**
0N/A * Strong bidirectional character type "LRE" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING = 14;
0N/A
0N/A /**
0N/A * Strong bidirectional character type "LRO" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE = 15;
0N/A
0N/A /**
0N/A * Strong bidirectional character type "RLE" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING = 16;
0N/A
0N/A /**
0N/A * Strong bidirectional character type "RLO" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE = 17;
0N/A
0N/A /**
0N/A * Weak bidirectional character type "PDF" in the Unicode specification.
0N/A * @since 1.4
0N/A */
0N/A public static final byte DIRECTIONALITY_POP_DIRECTIONAL_FORMAT = 18;
0N/A
0N/A /**
1602N/A * The minimum value of a
1602N/A * <a href="http://www.unicode.org/glossary/#high_surrogate_code_unit">
1602N/A * Unicode high-surrogate code unit</a>
3827N/A * in the UTF-16 encoding, constant {@code '\u005CuD800'}.
1602N/A * A high-surrogate is also known as a <i>leading-surrogate</i>.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final char MIN_HIGH_SURROGATE = '\uD800';
0N/A
0N/A /**
1602N/A * The maximum value of a
1602N/A * <a href="http://www.unicode.org/glossary/#high_surrogate_code_unit">
1602N/A * Unicode high-surrogate code unit</a>
3827N/A * in the UTF-16 encoding, constant {@code '\u005CuDBFF'}.
1602N/A * A high-surrogate is also known as a <i>leading-surrogate</i>.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final char MAX_HIGH_SURROGATE = '\uDBFF';
0N/A
0N/A /**
1602N/A * The minimum value of a
1602N/A * <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit">
1602N/A * Unicode low-surrogate code unit</a>
3827N/A * in the UTF-16 encoding, constant {@code '\u005CuDC00'}.
1602N/A * A low-surrogate is also known as a <i>trailing-surrogate</i>.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final char MIN_LOW_SURROGATE = '\uDC00';
0N/A
0N/A /**
1602N/A * The maximum value of a
1602N/A * <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit">
1602N/A * Unicode low-surrogate code unit</a>
3827N/A * in the UTF-16 encoding, constant {@code '\u005CuDFFF'}.
1602N/A * A low-surrogate is also known as a <i>trailing-surrogate</i>.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final char MAX_LOW_SURROGATE = '\uDFFF';
0N/A
0N/A /**
1602N/A * The minimum value of a Unicode surrogate code unit in the
3827N/A * UTF-16 encoding, constant {@code '\u005CuD800'}.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final char MIN_SURROGATE = MIN_HIGH_SURROGATE;
0N/A
0N/A /**
1602N/A * The maximum value of a Unicode surrogate code unit in the
3827N/A * UTF-16 encoding, constant {@code '\u005CuDFFF'}.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final char MAX_SURROGATE = MAX_LOW_SURROGATE;
0N/A
0N/A /**
1602N/A * The minimum value of a
1602N/A * <a href="http://www.unicode.org/glossary/#supplementary_code_point">
1602N/A * Unicode supplementary code point</a>, constant {@code U+10000}.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final int MIN_SUPPLEMENTARY_CODE_POINT = 0x010000;
0N/A
0N/A /**
1602N/A * The minimum value of a
1602N/A * <a href="http://www.unicode.org/glossary/#code_point">
1602N/A * Unicode code point</a>, constant {@code U+0000}.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final int MIN_CODE_POINT = 0x000000;
0N/A
0N/A /**
1602N/A * The maximum value of a
1602N/A * <a href="http://www.unicode.org/glossary/#code_point">
1602N/A * Unicode code point</a>, constant {@code U+10FFFF}.
0N/A *
0N/A * @since 1.5
0N/A */
1602N/A public static final int MAX_CODE_POINT = 0X10FFFF;
0N/A
0N/A
0N/A /**
0N/A * Instances of this class represent particular subsets of the Unicode
0N/A * character set. The only family of subsets defined in the
3827N/A * {@code Character} class is {@link Character.UnicodeBlock}.
2566N/A * Other portions of the Java API may define other subsets for their
2566N/A * own purposes.
0N/A *
0N/A * @since 1.2
0N/A */
0N/A public static class Subset {
0N/A
0N/A private String name;
0N/A
0N/A /**
3827N/A * Constructs a new {@code Subset} instance.
0N/A *
0N/A * @param name The name of this subset
3827N/A * @exception NullPointerException if name is {@code null}
0N/A */
0N/A protected Subset(String name) {
0N/A if (name == null) {
0N/A throw new NullPointerException("name");
0N/A }
0N/A this.name = name;
0N/A }
0N/A
0N/A /**
3827N/A * Compares two {@code Subset} objects for equality.
3827N/A * This method returns {@code true} if and only if
3827N/A * {@code this} and the argument refer to the same
3827N/A * object; since this method is {@code final}, this
0N/A * guarantee holds for all subclasses.
0N/A */
0N/A public final boolean equals(Object obj) {
0N/A return (this == obj);
0N/A }
0N/A
0N/A /**
0N/A * Returns the standard hash code as defined by the
3827N/A * {@link Object#hashCode} method. This method
3827N/A * is {@code final} in order to ensure that the
3827N/A * {@code equals} and {@code hashCode} methods will
0N/A * be consistent in all subclasses.
0N/A */
0N/A public final int hashCode() {
0N/A return super.hashCode();
0N/A }
0N/A
0N/A /**
0N/A * Returns the name of this subset.
0N/A */
0N/A public final String toString() {
0N/A return name;
0N/A }
0N/A }
0N/A
2565N/A // See http://www.unicode.org/Public/UNIDATA/Blocks.txt
2565N/A // for the latest specification of Unicode Blocks.
2565N/A
0N/A /**
0N/A * A family of character subsets representing the character blocks in the
0N/A * Unicode specification. Character blocks generally define characters
0N/A * used for a specific script or purpose. A character is contained by
0N/A * at most one Unicode block.
0N/A *
0N/A * @since 1.2
0N/A */
0N/A public static final class UnicodeBlock extends Subset {
0N/A
3323N/A private static Map<String, UnicodeBlock> map = new HashMap<>(256);
0N/A
0N/A /**
2565N/A * Creates a UnicodeBlock with the given identifier name.
0N/A * This name must be the same as the block identifier.
0N/A */
0N/A private UnicodeBlock(String idName) {
0N/A super(idName);
2565N/A map.put(idName, this);
0N/A }
0N/A
0N/A /**
2565N/A * Creates a UnicodeBlock with the given identifier name and
0N/A * alias name.
0N/A */
0N/A private UnicodeBlock(String idName, String alias) {
0N/A this(idName);
2565N/A map.put(alias, this);
0N/A }
0N/A
0N/A /**
2565N/A * Creates a UnicodeBlock with the given identifier name and
0N/A * alias names.
0N/A */
2565N/A private UnicodeBlock(String idName, String... aliases) {
0N/A this(idName);
2565N/A for (String alias : aliases)
2565N/A map.put(alias, this);
0N/A }
0N/A
0N/A /**
0N/A * Constant for the "Basic Latin" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock BASIC_LATIN =
2565N/A new UnicodeBlock("BASIC_LATIN",
2565N/A "BASIC LATIN",
2565N/A "BASICLATIN");
0N/A
0N/A /**
0N/A * Constant for the "Latin-1 Supplement" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock LATIN_1_SUPPLEMENT =
2565N/A new UnicodeBlock("LATIN_1_SUPPLEMENT",
2565N/A "LATIN-1 SUPPLEMENT",
2565N/A "LATIN-1SUPPLEMENT");
0N/A
0N/A /**
0N/A * Constant for the "Latin Extended-A" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock LATIN_EXTENDED_A =
2565N/A new UnicodeBlock("LATIN_EXTENDED_A",
2565N/A "LATIN EXTENDED-A",
2565N/A "LATINEXTENDED-A");
0N/A
0N/A /**
0N/A * Constant for the "Latin Extended-B" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock LATIN_EXTENDED_B =
2565N/A new UnicodeBlock("LATIN_EXTENDED_B",
2565N/A "LATIN EXTENDED-B",
2565N/A "LATINEXTENDED-B");
0N/A
0N/A /**
0N/A * Constant for the "IPA Extensions" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock IPA_EXTENSIONS =
2565N/A new UnicodeBlock("IPA_EXTENSIONS",
2565N/A "IPA EXTENSIONS",
2565N/A "IPAEXTENSIONS");
0N/A
0N/A /**
0N/A * Constant for the "Spacing Modifier Letters" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock SPACING_MODIFIER_LETTERS =
2565N/A new UnicodeBlock("SPACING_MODIFIER_LETTERS",
2565N/A "SPACING MODIFIER LETTERS",
2565N/A "SPACINGMODIFIERLETTERS");
0N/A
0N/A /**
0N/A * Constant for the "Combining Diacritical Marks" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock COMBINING_DIACRITICAL_MARKS =
2565N/A new UnicodeBlock("COMBINING_DIACRITICAL_MARKS",
2565N/A "COMBINING DIACRITICAL MARKS",
2565N/A "COMBININGDIACRITICALMARKS");
0N/A
0N/A /**
0N/A * Constant for the "Greek and Coptic" Unicode character block.
0N/A * <p>
0N/A * This block was previously known as the "Greek" block.
0N/A *
0N/A * @since 1.2
0N/A */
2565N/A public static final UnicodeBlock GREEK =
2565N/A new UnicodeBlock("GREEK",
2565N/A "GREEK AND COPTIC",
2565N/A "GREEKANDCOPTIC");
0N/A
0N/A /**
0N/A * Constant for the "Cyrillic" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock CYRILLIC =
0N/A new UnicodeBlock("CYRILLIC");
0N/A
0N/A /**
0N/A * Constant for the "Armenian" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ARMENIAN =
0N/A new UnicodeBlock("ARMENIAN");
0N/A
0N/A /**
0N/A * Constant for the "Hebrew" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock HEBREW =
0N/A new UnicodeBlock("HEBREW");
0N/A
0N/A /**
0N/A * Constant for the "Arabic" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ARABIC =
0N/A new UnicodeBlock("ARABIC");
0N/A
0N/A /**
0N/A * Constant for the "Devanagari" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock DEVANAGARI =
0N/A new UnicodeBlock("DEVANAGARI");
0N/A
0N/A /**
0N/A * Constant for the "Bengali" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock BENGALI =
0N/A new UnicodeBlock("BENGALI");
0N/A
0N/A /**
0N/A * Constant for the "Gurmukhi" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock GURMUKHI =
0N/A new UnicodeBlock("GURMUKHI");
0N/A
0N/A /**
0N/A * Constant for the "Gujarati" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock GUJARATI =
0N/A new UnicodeBlock("GUJARATI");
0N/A
0N/A /**
0N/A * Constant for the "Oriya" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ORIYA =
0N/A new UnicodeBlock("ORIYA");
0N/A
0N/A /**
0N/A * Constant for the "Tamil" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock TAMIL =
0N/A new UnicodeBlock("TAMIL");
0N/A
0N/A /**
0N/A * Constant for the "Telugu" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock TELUGU =
0N/A new UnicodeBlock("TELUGU");
0N/A
0N/A /**
0N/A * Constant for the "Kannada" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock KANNADA =
0N/A new UnicodeBlock("KANNADA");
0N/A
0N/A /**
0N/A * Constant for the "Malayalam" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock MALAYALAM =
0N/A new UnicodeBlock("MALAYALAM");
0N/A
0N/A /**
0N/A * Constant for the "Thai" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock THAI =
0N/A new UnicodeBlock("THAI");
0N/A
0N/A /**
0N/A * Constant for the "Lao" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock LAO =
0N/A new UnicodeBlock("LAO");
0N/A
0N/A /**
0N/A * Constant for the "Tibetan" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock TIBETAN =
0N/A new UnicodeBlock("TIBETAN");
0N/A
0N/A /**
0N/A * Constant for the "Georgian" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock GEORGIAN =
0N/A new UnicodeBlock("GEORGIAN");
0N/A
0N/A /**
0N/A * Constant for the "Hangul Jamo" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock HANGUL_JAMO =
2565N/A new UnicodeBlock("HANGUL_JAMO",
2565N/A "HANGUL JAMO",
2565N/A "HANGULJAMO");
0N/A
0N/A /**
0N/A * Constant for the "Latin Extended Additional" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock LATIN_EXTENDED_ADDITIONAL =
2565N/A new UnicodeBlock("LATIN_EXTENDED_ADDITIONAL",
2565N/A "LATIN EXTENDED ADDITIONAL",
2565N/A "LATINEXTENDEDADDITIONAL");
0N/A
0N/A /**
0N/A * Constant for the "Greek Extended" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock GREEK_EXTENDED =
2565N/A new UnicodeBlock("GREEK_EXTENDED",
2565N/A "GREEK EXTENDED",
2565N/A "GREEKEXTENDED");
0N/A
0N/A /**
0N/A * Constant for the "General Punctuation" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock GENERAL_PUNCTUATION =
2565N/A new UnicodeBlock("GENERAL_PUNCTUATION",
2565N/A "GENERAL PUNCTUATION",
2565N/A "GENERALPUNCTUATION");
0N/A
0N/A /**
3081N/A * Constant for the "Superscripts and Subscripts" Unicode character
3081N/A * block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock SUPERSCRIPTS_AND_SUBSCRIPTS =
2565N/A new UnicodeBlock("SUPERSCRIPTS_AND_SUBSCRIPTS",
2565N/A "SUPERSCRIPTS AND SUBSCRIPTS",
2565N/A "SUPERSCRIPTSANDSUBSCRIPTS");
0N/A
0N/A /**
0N/A * Constant for the "Currency Symbols" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock CURRENCY_SYMBOLS =
2565N/A new UnicodeBlock("CURRENCY_SYMBOLS",
2565N/A "CURRENCY SYMBOLS",
2565N/A "CURRENCYSYMBOLS");
0N/A
0N/A /**
3081N/A * Constant for the "Combining Diacritical Marks for Symbols" Unicode
3081N/A * character block.
0N/A * <p>
0N/A * This block was previously known as "Combining Marks for Symbols".
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock COMBINING_MARKS_FOR_SYMBOLS =
2565N/A new UnicodeBlock("COMBINING_MARKS_FOR_SYMBOLS",
2565N/A "COMBINING DIACRITICAL MARKS FOR SYMBOLS",
2565N/A "COMBININGDIACRITICALMARKSFORSYMBOLS",
2565N/A "COMBINING MARKS FOR SYMBOLS",
2565N/A "COMBININGMARKSFORSYMBOLS");
0N/A
0N/A /**
0N/A * Constant for the "Letterlike Symbols" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock LETTERLIKE_SYMBOLS =
2565N/A new UnicodeBlock("LETTERLIKE_SYMBOLS",
2565N/A "LETTERLIKE SYMBOLS",
2565N/A "LETTERLIKESYMBOLS");
0N/A
0N/A /**
0N/A * Constant for the "Number Forms" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock NUMBER_FORMS =
2565N/A new UnicodeBlock("NUMBER_FORMS",
2565N/A "NUMBER FORMS",
2565N/A "NUMBERFORMS");
0N/A
0N/A /**
0N/A * Constant for the "Arrows" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ARROWS =
0N/A new UnicodeBlock("ARROWS");
0N/A
0N/A /**
0N/A * Constant for the "Mathematical Operators" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock MATHEMATICAL_OPERATORS =
2565N/A new UnicodeBlock("MATHEMATICAL_OPERATORS",
2565N/A "MATHEMATICAL OPERATORS",
2565N/A "MATHEMATICALOPERATORS");
0N/A
0N/A /**
0N/A * Constant for the "Miscellaneous Technical" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock MISCELLANEOUS_TECHNICAL =
2565N/A new UnicodeBlock("MISCELLANEOUS_TECHNICAL",
2565N/A "MISCELLANEOUS TECHNICAL",
2565N/A "MISCELLANEOUSTECHNICAL");
0N/A
0N/A /**
0N/A * Constant for the "Control Pictures" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock CONTROL_PICTURES =
2565N/A new UnicodeBlock("CONTROL_PICTURES",
2565N/A "CONTROL PICTURES",
2565N/A "CONTROLPICTURES");
0N/A
0N/A /**
0N/A * Constant for the "Optical Character Recognition" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock OPTICAL_CHARACTER_RECOGNITION =
2565N/A new UnicodeBlock("OPTICAL_CHARACTER_RECOGNITION",
2565N/A "OPTICAL CHARACTER RECOGNITION",
2565N/A "OPTICALCHARACTERRECOGNITION");
0N/A
0N/A /**
0N/A * Constant for the "Enclosed Alphanumerics" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ENCLOSED_ALPHANUMERICS =
2565N/A new UnicodeBlock("ENCLOSED_ALPHANUMERICS",
2565N/A "ENCLOSED ALPHANUMERICS",
2565N/A "ENCLOSEDALPHANUMERICS");
0N/A
0N/A /**
0N/A * Constant for the "Box Drawing" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock BOX_DRAWING =
2565N/A new UnicodeBlock("BOX_DRAWING",
2565N/A "BOX DRAWING",
2565N/A "BOXDRAWING");
0N/A
0N/A /**
0N/A * Constant for the "Block Elements" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock BLOCK_ELEMENTS =
2565N/A new UnicodeBlock("BLOCK_ELEMENTS",
2565N/A "BLOCK ELEMENTS",
2565N/A "BLOCKELEMENTS");
0N/A
0N/A /**
0N/A * Constant for the "Geometric Shapes" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock GEOMETRIC_SHAPES =
2565N/A new UnicodeBlock("GEOMETRIC_SHAPES",
2565N/A "GEOMETRIC SHAPES",
2565N/A "GEOMETRICSHAPES");
0N/A
0N/A /**
0N/A * Constant for the "Miscellaneous Symbols" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock MISCELLANEOUS_SYMBOLS =
2565N/A new UnicodeBlock("MISCELLANEOUS_SYMBOLS",
2565N/A "MISCELLANEOUS SYMBOLS",
2565N/A "MISCELLANEOUSSYMBOLS");
0N/A
0N/A /**
0N/A * Constant for the "Dingbats" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock DINGBATS =
0N/A new UnicodeBlock("DINGBATS");
0N/A
0N/A /**
0N/A * Constant for the "CJK Symbols and Punctuation" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock CJK_SYMBOLS_AND_PUNCTUATION =
2565N/A new UnicodeBlock("CJK_SYMBOLS_AND_PUNCTUATION",
2565N/A "CJK SYMBOLS AND PUNCTUATION",
2565N/A "CJKSYMBOLSANDPUNCTUATION");
0N/A
0N/A /**
0N/A * Constant for the "Hiragana" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock HIRAGANA =
0N/A new UnicodeBlock("HIRAGANA");
0N/A
0N/A /**
0N/A * Constant for the "Katakana" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock KATAKANA =
0N/A new UnicodeBlock("KATAKANA");
0N/A
0N/A /**
0N/A * Constant for the "Bopomofo" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock BOPOMOFO =
0N/A new UnicodeBlock("BOPOMOFO");
0N/A
0N/A /**
0N/A * Constant for the "Hangul Compatibility Jamo" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock HANGUL_COMPATIBILITY_JAMO =
2565N/A new UnicodeBlock("HANGUL_COMPATIBILITY_JAMO",
2565N/A "HANGUL COMPATIBILITY JAMO",
2565N/A "HANGULCOMPATIBILITYJAMO");
0N/A
0N/A /**
0N/A * Constant for the "Kanbun" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock KANBUN =
0N/A new UnicodeBlock("KANBUN");
0N/A
0N/A /**
0N/A * Constant for the "Enclosed CJK Letters and Months" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ENCLOSED_CJK_LETTERS_AND_MONTHS =
2565N/A new UnicodeBlock("ENCLOSED_CJK_LETTERS_AND_MONTHS",
2565N/A "ENCLOSED CJK LETTERS AND MONTHS",
2565N/A "ENCLOSEDCJKLETTERSANDMONTHS");
0N/A
0N/A /**
0N/A * Constant for the "CJK Compatibility" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock CJK_COMPATIBILITY =
2565N/A new UnicodeBlock("CJK_COMPATIBILITY",
2565N/A "CJK COMPATIBILITY",
2565N/A "CJKCOMPATIBILITY");
0N/A
0N/A /**
0N/A * Constant for the "CJK Unified Ideographs" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock CJK_UNIFIED_IDEOGRAPHS =
2565N/A new UnicodeBlock("CJK_UNIFIED_IDEOGRAPHS",
2565N/A "CJK UNIFIED IDEOGRAPHS",
2565N/A "CJKUNIFIEDIDEOGRAPHS");
0N/A
0N/A /**
0N/A * Constant for the "Hangul Syllables" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock HANGUL_SYLLABLES =
2565N/A new UnicodeBlock("HANGUL_SYLLABLES",
2565N/A "HANGUL SYLLABLES",
2565N/A "HANGULSYLLABLES");
0N/A
0N/A /**
0N/A * Constant for the "Private Use Area" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock PRIVATE_USE_AREA =
2565N/A new UnicodeBlock("PRIVATE_USE_AREA",
2565N/A "PRIVATE USE AREA",
2565N/A "PRIVATEUSEAREA");
0N/A
0N/A /**
3081N/A * Constant for the "CJK Compatibility Ideographs" Unicode character
3081N/A * block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock CJK_COMPATIBILITY_IDEOGRAPHS =
0N/A new UnicodeBlock("CJK_COMPATIBILITY_IDEOGRAPHS",
2565N/A "CJK COMPATIBILITY IDEOGRAPHS",
2565N/A "CJKCOMPATIBILITYIDEOGRAPHS");
0N/A
0N/A /**
0N/A * Constant for the "Alphabetic Presentation Forms" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ALPHABETIC_PRESENTATION_FORMS =
2565N/A new UnicodeBlock("ALPHABETIC_PRESENTATION_FORMS",
2565N/A "ALPHABETIC PRESENTATION FORMS",
2565N/A "ALPHABETICPRESENTATIONFORMS");
0N/A
0N/A /**
3081N/A * Constant for the "Arabic Presentation Forms-A" Unicode character
3081N/A * block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ARABIC_PRESENTATION_FORMS_A =
2565N/A new UnicodeBlock("ARABIC_PRESENTATION_FORMS_A",
2565N/A "ARABIC PRESENTATION FORMS-A",
2565N/A "ARABICPRESENTATIONFORMS-A");
0N/A
0N/A /**
0N/A * Constant for the "Combining Half Marks" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock COMBINING_HALF_MARKS =
2565N/A new UnicodeBlock("COMBINING_HALF_MARKS",
2565N/A "COMBINING HALF MARKS",
2565N/A "COMBININGHALFMARKS");
0N/A
0N/A /**
0N/A * Constant for the "CJK Compatibility Forms" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock CJK_COMPATIBILITY_FORMS =
2565N/A new UnicodeBlock("CJK_COMPATIBILITY_FORMS",
2565N/A "CJK COMPATIBILITY FORMS",
2565N/A "CJKCOMPATIBILITYFORMS");
0N/A
0N/A /**
0N/A * Constant for the "Small Form Variants" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock SMALL_FORM_VARIANTS =
2565N/A new UnicodeBlock("SMALL_FORM_VARIANTS",
2565N/A "SMALL FORM VARIANTS",
2565N/A "SMALLFORMVARIANTS");
0N/A
0N/A /**
0N/A * Constant for the "Arabic Presentation Forms-B" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock ARABIC_PRESENTATION_FORMS_B =
2565N/A new UnicodeBlock("ARABIC_PRESENTATION_FORMS_B",
2565N/A "ARABIC PRESENTATION FORMS-B",
2565N/A "ARABICPRESENTATIONFORMS-B");
0N/A
0N/A /**
3081N/A * Constant for the "Halfwidth and Fullwidth Forms" Unicode character
3081N/A * block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock HALFWIDTH_AND_FULLWIDTH_FORMS =
0N/A new UnicodeBlock("HALFWIDTH_AND_FULLWIDTH_FORMS",
2565N/A "HALFWIDTH AND FULLWIDTH FORMS",
2565N/A "HALFWIDTHANDFULLWIDTHFORMS");
0N/A
0N/A /**
0N/A * Constant for the "Specials" Unicode character block.
0N/A * @since 1.2
0N/A */
0N/A public static final UnicodeBlock SPECIALS =
0N/A new UnicodeBlock("SPECIALS");
0N/A
0N/A /**
0N/A * @deprecated As of J2SE 5, use {@link #HIGH_SURROGATES},
0N/A * {@link #HIGH_PRIVATE_USE_SURROGATES}, and
0N/A * {@link #LOW_SURROGATES}. These new constants match
0N/A * the block definitions of the Unicode Standard.
0N/A * The {@link #of(char)} and {@link #of(int)} methods
0N/A * return the new constants, not SURROGATES_AREA.
0N/A */
0N/A @Deprecated
0N/A public static final UnicodeBlock SURROGATES_AREA =
0N/A new UnicodeBlock("SURROGATES_AREA");
0N/A
0N/A /**
0N/A * Constant for the "Syriac" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock SYRIAC =
0N/A new UnicodeBlock("SYRIAC");
0N/A
0N/A /**
0N/A * Constant for the "Thaana" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock THAANA =
0N/A new UnicodeBlock("THAANA");
0N/A
0N/A /**
0N/A * Constant for the "Sinhala" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock SINHALA =
0N/A new UnicodeBlock("SINHALA");
0N/A
0N/A /**
0N/A * Constant for the "Myanmar" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock MYANMAR =
0N/A new UnicodeBlock("MYANMAR");
0N/A
0N/A /**
0N/A * Constant for the "Ethiopic" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock ETHIOPIC =
0N/A new UnicodeBlock("ETHIOPIC");
0N/A
0N/A /**
0N/A * Constant for the "Cherokee" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock CHEROKEE =
0N/A new UnicodeBlock("CHEROKEE");
0N/A
0N/A /**
0N/A * Constant for the "Unified Canadian Aboriginal Syllabics" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS =
0N/A new UnicodeBlock("UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS",
2565N/A "UNIFIED CANADIAN ABORIGINAL SYLLABICS",
2565N/A "UNIFIEDCANADIANABORIGINALSYLLABICS");
0N/A
0N/A /**
0N/A * Constant for the "Ogham" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock OGHAM =
2565N/A new UnicodeBlock("OGHAM");
0N/A
0N/A /**
0N/A * Constant for the "Runic" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock RUNIC =
2565N/A new UnicodeBlock("RUNIC");
0N/A
0N/A /**
0N/A * Constant for the "Khmer" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock KHMER =
2565N/A new UnicodeBlock("KHMER");
0N/A
0N/A /**
0N/A * Constant for the "Mongolian" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock MONGOLIAN =
2565N/A new UnicodeBlock("MONGOLIAN");
0N/A
0N/A /**
0N/A * Constant for the "Braille Patterns" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock BRAILLE_PATTERNS =
2565N/A new UnicodeBlock("BRAILLE_PATTERNS",
2565N/A "BRAILLE PATTERNS",
2565N/A "BRAILLEPATTERNS");
0N/A
0N/A /**
0N/A * Constant for the "CJK Radicals Supplement" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock CJK_RADICALS_SUPPLEMENT =
2565N/A new UnicodeBlock("CJK_RADICALS_SUPPLEMENT",
2565N/A "CJK RADICALS SUPPLEMENT",
2565N/A "CJKRADICALSSUPPLEMENT");
0N/A
0N/A /**
0N/A * Constant for the "Kangxi Radicals" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock KANGXI_RADICALS =
2565N/A new UnicodeBlock("KANGXI_RADICALS",
2565N/A "KANGXI RADICALS",
2565N/A "KANGXIRADICALS");
0N/A
0N/A /**
0N/A * Constant for the "Ideographic Description Characters" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock IDEOGRAPHIC_DESCRIPTION_CHARACTERS =
2565N/A new UnicodeBlock("IDEOGRAPHIC_DESCRIPTION_CHARACTERS",
2565N/A "IDEOGRAPHIC DESCRIPTION CHARACTERS",
2565N/A "IDEOGRAPHICDESCRIPTIONCHARACTERS");
0N/A
0N/A /**
0N/A * Constant for the "Bopomofo Extended" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock BOPOMOFO_EXTENDED =
2565N/A new UnicodeBlock("BOPOMOFO_EXTENDED",
2565N/A "BOPOMOFO EXTENDED",
2565N/A "BOPOMOFOEXTENDED");
0N/A
0N/A /**
0N/A * Constant for the "CJK Unified Ideographs Extension A" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A =
2565N/A new UnicodeBlock("CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A",
2565N/A "CJK UNIFIED IDEOGRAPHS EXTENSION A",
2565N/A "CJKUNIFIEDIDEOGRAPHSEXTENSIONA");
0N/A
0N/A /**
0N/A * Constant for the "Yi Syllables" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock YI_SYLLABLES =
2565N/A new UnicodeBlock("YI_SYLLABLES",
2565N/A "YI SYLLABLES",
2565N/A "YISYLLABLES");
0N/A
0N/A /**
0N/A * Constant for the "Yi Radicals" Unicode character block.
0N/A * @since 1.4
0N/A */
0N/A public static final UnicodeBlock YI_RADICALS =
2565N/A new UnicodeBlock("YI_RADICALS",
2565N/A "YI RADICALS",
2565N/A "YIRADICALS");
0N/A
0N/A /**
0N/A * Constant for the "Cyrillic Supplementary" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock CYRILLIC_SUPPLEMENTARY =
1091N/A new UnicodeBlock("CYRILLIC_SUPPLEMENTARY",
2565N/A "CYRILLIC SUPPLEMENTARY",
2565N/A "CYRILLICSUPPLEMENTARY",
2565N/A "CYRILLIC SUPPLEMENT",
2565N/A "CYRILLICSUPPLEMENT");
0N/A
0N/A /**
0N/A * Constant for the "Tagalog" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock TAGALOG =
0N/A new UnicodeBlock("TAGALOG");
0N/A
0N/A /**
0N/A * Constant for the "Hanunoo" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock HANUNOO =
0N/A new UnicodeBlock("HANUNOO");
0N/A
0N/A /**
0N/A * Constant for the "Buhid" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock BUHID =
0N/A new UnicodeBlock("BUHID");
0N/A
0N/A /**
0N/A * Constant for the "Tagbanwa" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock TAGBANWA =
0N/A new UnicodeBlock("TAGBANWA");
0N/A
0N/A /**
0N/A * Constant for the "Limbu" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock LIMBU =
0N/A new UnicodeBlock("LIMBU");
0N/A
0N/A /**
0N/A * Constant for the "Tai Le" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock TAI_LE =
2565N/A new UnicodeBlock("TAI_LE",
2565N/A "TAI LE",
2565N/A "TAILE");
0N/A
0N/A /**
0N/A * Constant for the "Khmer Symbols" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock KHMER_SYMBOLS =
2565N/A new UnicodeBlock("KHMER_SYMBOLS",
2565N/A "KHMER SYMBOLS",
2565N/A "KHMERSYMBOLS");
0N/A
0N/A /**
0N/A * Constant for the "Phonetic Extensions" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock PHONETIC_EXTENSIONS =
2565N/A new UnicodeBlock("PHONETIC_EXTENSIONS",
2565N/A "PHONETIC EXTENSIONS",
2565N/A "PHONETICEXTENSIONS");
0N/A
0N/A /**
0N/A * Constant for the "Miscellaneous Mathematical Symbols-A" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A =
0N/A new UnicodeBlock("MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A",
2565N/A "MISCELLANEOUS MATHEMATICAL SYMBOLS-A",
2565N/A "MISCELLANEOUSMATHEMATICALSYMBOLS-A");
0N/A
0N/A /**
0N/A * Constant for the "Supplemental Arrows-A" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock SUPPLEMENTAL_ARROWS_A =
2565N/A new UnicodeBlock("SUPPLEMENTAL_ARROWS_A",
2565N/A "SUPPLEMENTAL ARROWS-A",
2565N/A "SUPPLEMENTALARROWS-A");
0N/A
0N/A /**
0N/A * Constant for the "Supplemental Arrows-B" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock SUPPLEMENTAL_ARROWS_B =
2565N/A new UnicodeBlock("SUPPLEMENTAL_ARROWS_B",
2565N/A "SUPPLEMENTAL ARROWS-B",
2565N/A "SUPPLEMENTALARROWS-B");
0N/A
0N/A /**
3081N/A * Constant for the "Miscellaneous Mathematical Symbols-B" Unicode
3081N/A * character block.
0N/A * @since 1.5
0N/A */
2565N/A public static final UnicodeBlock MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B =
2565N/A new UnicodeBlock("MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B",
2565N/A "MISCELLANEOUS MATHEMATICAL SYMBOLS-B",
2565N/A "MISCELLANEOUSMATHEMATICALSYMBOLS-B");
0N/A
0N/A /**
3081N/A * Constant for the "Supplemental Mathematical Operators" Unicode
3081N/A * character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock SUPPLEMENTAL_MATHEMATICAL_OPERATORS =
0N/A new UnicodeBlock("SUPPLEMENTAL_MATHEMATICAL_OPERATORS",
2565N/A "SUPPLEMENTAL MATHEMATICAL OPERATORS",
2565N/A "SUPPLEMENTALMATHEMATICALOPERATORS");
0N/A
0N/A /**
3081N/A * Constant for the "Miscellaneous Symbols and Arrows" Unicode character
3081N/A * block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock MISCELLANEOUS_SYMBOLS_AND_ARROWS =
2565N/A new UnicodeBlock("MISCELLANEOUS_SYMBOLS_AND_ARROWS",
2565N/A "MISCELLANEOUS SYMBOLS AND ARROWS",
2565N/A "MISCELLANEOUSSYMBOLSANDARROWS");
0N/A
0N/A /**
3081N/A * Constant for the "Katakana Phonetic Extensions" Unicode character
3081N/A * block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock KATAKANA_PHONETIC_EXTENSIONS =
2565N/A new UnicodeBlock("KATAKANA_PHONETIC_EXTENSIONS",
2565N/A "KATAKANA PHONETIC EXTENSIONS",
2565N/A "KATAKANAPHONETICEXTENSIONS");
0N/A
0N/A /**
0N/A * Constant for the "Yijing Hexagram Symbols" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock YIJING_HEXAGRAM_SYMBOLS =
2565N/A new UnicodeBlock("YIJING_HEXAGRAM_SYMBOLS",
2565N/A "YIJING HEXAGRAM SYMBOLS",
2565N/A "YIJINGHEXAGRAMSYMBOLS");
0N/A
0N/A /**
0N/A * Constant for the "Variation Selectors" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock VARIATION_SELECTORS =
2565N/A new UnicodeBlock("VARIATION_SELECTORS",
2565N/A "VARIATION SELECTORS",
2565N/A "VARIATIONSELECTORS");
0N/A
0N/A /**
0N/A * Constant for the "Linear B Syllabary" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock LINEAR_B_SYLLABARY =
2565N/A new UnicodeBlock("LINEAR_B_SYLLABARY",
2565N/A "LINEAR B SYLLABARY",
2565N/A "LINEARBSYLLABARY");
0N/A
0N/A /**
0N/A * Constant for the "Linear B Ideograms" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock LINEAR_B_IDEOGRAMS =
2565N/A new UnicodeBlock("LINEAR_B_IDEOGRAMS",
2565N/A "LINEAR B IDEOGRAMS",
2565N/A "LINEARBIDEOGRAMS");
0N/A
0N/A /**
0N/A * Constant for the "Aegean Numbers" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock AEGEAN_NUMBERS =
2565N/A new UnicodeBlock("AEGEAN_NUMBERS",
2565N/A "AEGEAN NUMBERS",
2565N/A "AEGEANNUMBERS");
0N/A
0N/A /**
0N/A * Constant for the "Old Italic" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock OLD_ITALIC =
2565N/A new UnicodeBlock("OLD_ITALIC",
2565N/A "OLD ITALIC",
2565N/A "OLDITALIC");
0N/A
0N/A /**
0N/A * Constant for the "Gothic" Unicode character block.
0N/A * @since 1.5
0N/A */
2565N/A public static final UnicodeBlock GOTHIC =
2565N/A new UnicodeBlock("GOTHIC");
0N/A
0N/A /**
0N/A * Constant for the "Ugaritic" Unicode character block.
0N/A * @since 1.5
0N/A */
2565N/A public static final UnicodeBlock UGARITIC =
2565N/A new UnicodeBlock("UGARITIC");
0N/A
0N/A /**
0N/A * Constant for the "Deseret" Unicode character block.
0N/A * @since 1.5
0N/A */
2565N/A public static final UnicodeBlock DESERET =
2565N/A new UnicodeBlock("DESERET");
0N/A
0N/A /**
0N/A * Constant for the "Shavian" Unicode character block.
0N/A * @since 1.5
0N/A */
2565N/A public static final UnicodeBlock SHAVIAN =
2565N/A new UnicodeBlock("SHAVIAN");
0N/A
0N/A /**
0N/A * Constant for the "Osmanya" Unicode character block.
0N/A * @since 1.5
0N/A */
2565N/A public static final UnicodeBlock OSMANYA =
2565N/A new UnicodeBlock("OSMANYA");
0N/A
0N/A /**
0N/A * Constant for the "Cypriot Syllabary" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock CYPRIOT_SYLLABARY =
2565N/A new UnicodeBlock("CYPRIOT_SYLLABARY",
2565N/A "CYPRIOT SYLLABARY",
2565N/A "CYPRIOTSYLLABARY");
0N/A
0N/A /**
0N/A * Constant for the "Byzantine Musical Symbols" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock BYZANTINE_MUSICAL_SYMBOLS =
2565N/A new UnicodeBlock("BYZANTINE_MUSICAL_SYMBOLS",
2565N/A "BYZANTINE MUSICAL SYMBOLS",
2565N/A "BYZANTINEMUSICALSYMBOLS");
0N/A
0N/A /**
0N/A * Constant for the "Musical Symbols" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock MUSICAL_SYMBOLS =
2565N/A new UnicodeBlock("MUSICAL_SYMBOLS",
2565N/A "MUSICAL SYMBOLS",
2565N/A "MUSICALSYMBOLS");
0N/A
0N/A /**
0N/A * Constant for the "Tai Xuan Jing Symbols" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock TAI_XUAN_JING_SYMBOLS =
2565N/A new UnicodeBlock("TAI_XUAN_JING_SYMBOLS",
2565N/A "TAI XUAN JING SYMBOLS",
2565N/A "TAIXUANJINGSYMBOLS");
0N/A
0N/A /**
3081N/A * Constant for the "Mathematical Alphanumeric Symbols" Unicode
3081N/A * character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock MATHEMATICAL_ALPHANUMERIC_SYMBOLS =
0N/A new UnicodeBlock("MATHEMATICAL_ALPHANUMERIC_SYMBOLS",
2565N/A "MATHEMATICAL ALPHANUMERIC SYMBOLS",
2565N/A "MATHEMATICALALPHANUMERICSYMBOLS");
0N/A
0N/A /**
3081N/A * Constant for the "CJK Unified Ideographs Extension B" Unicode
3081N/A * character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B =
0N/A new UnicodeBlock("CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B",
2565N/A "CJK UNIFIED IDEOGRAPHS EXTENSION B",
2565N/A "CJKUNIFIEDIDEOGRAPHSEXTENSIONB");
0N/A
0N/A /**
0N/A * Constant for the "CJK Compatibility Ideographs Supplement" Unicode character block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT =
0N/A new UnicodeBlock("CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT",
2565N/A "CJK COMPATIBILITY IDEOGRAPHS SUPPLEMENT",
2565N/A "CJKCOMPATIBILITYIDEOGRAPHSSUPPLEMENT");
0N/A
0N/A /**
0N/A * Constant for the "Tags" Unicode character block.
0N/A * @since 1.5
0N/A */
2565N/A public static final UnicodeBlock TAGS =
2565N/A new UnicodeBlock("TAGS");
0N/A
0N/A /**
3081N/A * Constant for the "Variation Selectors Supplement" Unicode character
3081N/A * block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock VARIATION_SELECTORS_SUPPLEMENT =
2565N/A new UnicodeBlock("VARIATION_SELECTORS_SUPPLEMENT",
2565N/A "VARIATION SELECTORS SUPPLEMENT",
2565N/A "VARIATIONSELECTORSSUPPLEMENT");
0N/A
0N/A /**
3081N/A * Constant for the "Supplementary Private Use Area-A" Unicode character
3081N/A * block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock SUPPLEMENTARY_PRIVATE_USE_AREA_A =
0N/A new UnicodeBlock("SUPPLEMENTARY_PRIVATE_USE_AREA_A",
2565N/A "SUPPLEMENTARY PRIVATE USE AREA-A",
2565N/A "SUPPLEMENTARYPRIVATEUSEAREA-A");
0N/A
0N/A /**
3081N/A * Constant for the "Supplementary Private Use Area-B" Unicode character
3081N/A * block.
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock SUPPLEMENTARY_PRIVATE_USE_AREA_B =
0N/A new UnicodeBlock("SUPPLEMENTARY_PRIVATE_USE_AREA_B",
2565N/A "SUPPLEMENTARY PRIVATE USE AREA-B",
2565N/A "SUPPLEMENTARYPRIVATEUSEAREA-B");
0N/A
0N/A /**
0N/A * Constant for the "High Surrogates" Unicode character block.
0N/A * This block represents codepoint values in the high surrogate
2565N/A * range: U+D800 through U+DB7F
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock HIGH_SURROGATES =
2565N/A new UnicodeBlock("HIGH_SURROGATES",
2565N/A "HIGH SURROGATES",
2565N/A "HIGHSURROGATES");
0N/A
0N/A /**
3081N/A * Constant for the "High Private Use Surrogates" Unicode character
3081N/A * block.
3081N/A * This block represents codepoint values in the private use high
3081N/A * surrogate range: U+DB80 through U+DBFF
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock HIGH_PRIVATE_USE_SURROGATES =
2565N/A new UnicodeBlock("HIGH_PRIVATE_USE_SURROGATES",
2565N/A "HIGH PRIVATE USE SURROGATES",
2565N/A "HIGHPRIVATEUSESURROGATES");
0N/A
0N/A /**
0N/A * Constant for the "Low Surrogates" Unicode character block.
2565N/A * This block represents codepoint values in the low surrogate
2565N/A * range: U+DC00 through U+DFFF
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock LOW_SURROGATES =
2565N/A new UnicodeBlock("LOW_SURROGATES",
2565N/A "LOW SURROGATES",
2565N/A "LOWSURROGATES");
0N/A
1091N/A /**
1091N/A * Constant for the "Arabic Supplement" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock ARABIC_SUPPLEMENT =
1091N/A new UnicodeBlock("ARABIC_SUPPLEMENT",
2565N/A "ARABIC SUPPLEMENT",
2565N/A "ARABICSUPPLEMENT");
1091N/A
1091N/A /**
1091N/A * Constant for the "NKo" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock NKO =
2565N/A new UnicodeBlock("NKO");
1091N/A
1091N/A /**
3081N/A * Constant for the "Samaritan" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock SAMARITAN =
3081N/A new UnicodeBlock("SAMARITAN");
3081N/A
3081N/A /**
3081N/A * Constant for the "Mandaic" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock MANDAIC =
3081N/A new UnicodeBlock("MANDAIC");
3081N/A
3081N/A /**
1091N/A * Constant for the "Ethiopic Supplement" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock ETHIOPIC_SUPPLEMENT =
1091N/A new UnicodeBlock("ETHIOPIC_SUPPLEMENT",
2565N/A "ETHIOPIC SUPPLEMENT",
2565N/A "ETHIOPICSUPPLEMENT");
1091N/A
1091N/A /**
3081N/A * Constant for the "Unified Canadian Aboriginal Syllabics Extended"
3081N/A * Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED =
3081N/A new UnicodeBlock("UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED",
3081N/A "UNIFIED CANADIAN ABORIGINAL SYLLABICS EXTENDED",
3081N/A "UNIFIEDCANADIANABORIGINALSYLLABICSEXTENDED");
3081N/A
3081N/A /**
1091N/A * Constant for the "New Tai Lue" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock NEW_TAI_LUE =
1091N/A new UnicodeBlock("NEW_TAI_LUE",
2565N/A "NEW TAI LUE",
2565N/A "NEWTAILUE");
1091N/A
1091N/A /**
1091N/A * Constant for the "Buginese" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock BUGINESE =
1091N/A new UnicodeBlock("BUGINESE");
1091N/A
1091N/A /**
3081N/A * Constant for the "Tai Tham" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock TAI_THAM =
3081N/A new UnicodeBlock("TAI_THAM",
3081N/A "TAI THAM",
3081N/A "TAITHAM");
3081N/A
3081N/A /**
1091N/A * Constant for the "Balinese" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock BALINESE =
1091N/A new UnicodeBlock("BALINESE");
1091N/A
1091N/A /**
1091N/A * Constant for the "Sundanese" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock SUNDANESE =
1091N/A new UnicodeBlock("SUNDANESE");
1091N/A
1091N/A /**
3081N/A * Constant for the "Batak" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock BATAK =
3081N/A new UnicodeBlock("BATAK");
3081N/A
3081N/A /**
1091N/A * Constant for the "Lepcha" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock LEPCHA =
2565N/A new UnicodeBlock("LEPCHA");
1091N/A
1091N/A /**
1091N/A * Constant for the "Ol Chiki" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock OL_CHIKI =
1091N/A new UnicodeBlock("OL_CHIKI",
2565N/A "OL CHIKI",
2565N/A "OLCHIKI");
1091N/A
1091N/A /**
3081N/A * Constant for the "Vedic Extensions" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock VEDIC_EXTENSIONS =
3081N/A new UnicodeBlock("VEDIC_EXTENSIONS",
3081N/A "VEDIC EXTENSIONS",
3081N/A "VEDICEXTENSIONS");
3081N/A
3081N/A /**
1091N/A * Constant for the "Phonetic Extensions Supplement" Unicode character
1091N/A * block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock PHONETIC_EXTENSIONS_SUPPLEMENT =
1091N/A new UnicodeBlock("PHONETIC_EXTENSIONS_SUPPLEMENT",
2565N/A "PHONETIC EXTENSIONS SUPPLEMENT",
2565N/A "PHONETICEXTENSIONSSUPPLEMENT");
1091N/A
1091N/A /**
1091N/A * Constant for the "Combining Diacritical Marks Supplement" Unicode
1091N/A * character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock COMBINING_DIACRITICAL_MARKS_SUPPLEMENT =
1091N/A new UnicodeBlock("COMBINING_DIACRITICAL_MARKS_SUPPLEMENT",
2565N/A "COMBINING DIACRITICAL MARKS SUPPLEMENT",
2565N/A "COMBININGDIACRITICALMARKSSUPPLEMENT");
1091N/A
1091N/A /**
1091N/A * Constant for the "Glagolitic" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock GLAGOLITIC =
1091N/A new UnicodeBlock("GLAGOLITIC");
1091N/A
1091N/A /**
1091N/A * Constant for the "Latin Extended-C" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock LATIN_EXTENDED_C =
1091N/A new UnicodeBlock("LATIN_EXTENDED_C",
2565N/A "LATIN EXTENDED-C",
2565N/A "LATINEXTENDED-C");
1091N/A
1091N/A /**
1091N/A * Constant for the "Coptic" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock COPTIC =
2565N/A new UnicodeBlock("COPTIC");
1091N/A
1091N/A /**
1091N/A * Constant for the "Georgian Supplement" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock GEORGIAN_SUPPLEMENT =
1091N/A new UnicodeBlock("GEORGIAN_SUPPLEMENT",
2565N/A "GEORGIAN SUPPLEMENT",
2565N/A "GEORGIANSUPPLEMENT");
1091N/A
1091N/A /**
1091N/A * Constant for the "Tifinagh" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock TIFINAGH =
1091N/A new UnicodeBlock("TIFINAGH");
1091N/A
1091N/A /**
1091N/A * Constant for the "Ethiopic Extended" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock ETHIOPIC_EXTENDED =
1091N/A new UnicodeBlock("ETHIOPIC_EXTENDED",
2565N/A "ETHIOPIC EXTENDED",
2565N/A "ETHIOPICEXTENDED");
1091N/A
1091N/A /**
1091N/A * Constant for the "Cyrillic Extended-A" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock CYRILLIC_EXTENDED_A =
1091N/A new UnicodeBlock("CYRILLIC_EXTENDED_A",
2565N/A "CYRILLIC EXTENDED-A",
2565N/A "CYRILLICEXTENDED-A");
1091N/A
1091N/A /**
1091N/A * Constant for the "Supplemental Punctuation" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock SUPPLEMENTAL_PUNCTUATION =
1091N/A new UnicodeBlock("SUPPLEMENTAL_PUNCTUATION",
2565N/A "SUPPLEMENTAL PUNCTUATION",
2565N/A "SUPPLEMENTALPUNCTUATION");
1091N/A
1091N/A /**
1091N/A * Constant for the "CJK Strokes" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock CJK_STROKES =
1091N/A new UnicodeBlock("CJK_STROKES",
2565N/A "CJK STROKES",
2565N/A "CJKSTROKES");
1091N/A
1091N/A /**
3081N/A * Constant for the "Lisu" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock LISU =
3081N/A new UnicodeBlock("LISU");
3081N/A
3081N/A /**
1091N/A * Constant for the "Vai" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock VAI =
2565N/A new UnicodeBlock("VAI");
1091N/A
1091N/A /**
1091N/A * Constant for the "Cyrillic Extended-B" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock CYRILLIC_EXTENDED_B =
1091N/A new UnicodeBlock("CYRILLIC_EXTENDED_B",
2565N/A "CYRILLIC EXTENDED-B",
2565N/A "CYRILLICEXTENDED-B");
1091N/A
1091N/A /**
3081N/A * Constant for the "Bamum" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock BAMUM =
3081N/A new UnicodeBlock("BAMUM");
3081N/A
3081N/A /**
1091N/A * Constant for the "Modifier Tone Letters" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock MODIFIER_TONE_LETTERS =
1091N/A new UnicodeBlock("MODIFIER_TONE_LETTERS",
2565N/A "MODIFIER TONE LETTERS",
2565N/A "MODIFIERTONELETTERS");
1091N/A
1091N/A /**
1091N/A * Constant for the "Latin Extended-D" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock LATIN_EXTENDED_D =
1091N/A new UnicodeBlock("LATIN_EXTENDED_D",
2565N/A "LATIN EXTENDED-D",
2565N/A "LATINEXTENDED-D");
1091N/A
1091N/A /**
1091N/A * Constant for the "Syloti Nagri" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock SYLOTI_NAGRI =
1091N/A new UnicodeBlock("SYLOTI_NAGRI",
2565N/A "SYLOTI NAGRI",
2565N/A "SYLOTINAGRI");
1091N/A
1091N/A /**
3081N/A * Constant for the "Common Indic Number Forms" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock COMMON_INDIC_NUMBER_FORMS =
3081N/A new UnicodeBlock("COMMON_INDIC_NUMBER_FORMS",
3081N/A "COMMON INDIC NUMBER FORMS",
3081N/A "COMMONINDICNUMBERFORMS");
3081N/A
3081N/A /**
1091N/A * Constant for the "Phags-pa" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock PHAGS_PA =
2565N/A new UnicodeBlock("PHAGS_PA",
2565N/A "PHAGS-PA");
1091N/A
1091N/A /**
1091N/A * Constant for the "Saurashtra" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock SAURASHTRA =
1091N/A new UnicodeBlock("SAURASHTRA");
1091N/A
1091N/A /**
3081N/A * Constant for the "Devanagari Extended" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock DEVANAGARI_EXTENDED =
3081N/A new UnicodeBlock("DEVANAGARI_EXTENDED",
3081N/A "DEVANAGARI EXTENDED",
3081N/A "DEVANAGARIEXTENDED");
3081N/A
3081N/A /**
1091N/A * Constant for the "Kayah Li" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock KAYAH_LI =
1091N/A new UnicodeBlock("KAYAH_LI",
2565N/A "KAYAH LI",
2565N/A "KAYAHLI");
1091N/A
1091N/A /**
1091N/A * Constant for the "Rejang" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock REJANG =
2565N/A new UnicodeBlock("REJANG");
1091N/A
1091N/A /**
3081N/A * Constant for the "Hangul Jamo Extended-A" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock HANGUL_JAMO_EXTENDED_A =
3081N/A new UnicodeBlock("HANGUL_JAMO_EXTENDED_A",
3081N/A "HANGUL JAMO EXTENDED-A",
3081N/A "HANGULJAMOEXTENDED-A");
3081N/A
3081N/A /**
3081N/A * Constant for the "Javanese" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock JAVANESE =
3081N/A new UnicodeBlock("JAVANESE");
3081N/A
3081N/A /**
1091N/A * Constant for the "Cham" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock CHAM =
2565N/A new UnicodeBlock("CHAM");
1091N/A
1091N/A /**
3081N/A * Constant for the "Myanmar Extended-A" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock MYANMAR_EXTENDED_A =
3081N/A new UnicodeBlock("MYANMAR_EXTENDED_A",
3081N/A "MYANMAR EXTENDED-A",
3081N/A "MYANMAREXTENDED-A");
3081N/A
3081N/A /**
3081N/A * Constant for the "Tai Viet" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock TAI_VIET =
3081N/A new UnicodeBlock("TAI_VIET",
3081N/A "TAI VIET",
3081N/A "TAIVIET");
3081N/A
3081N/A /**
3081N/A * Constant for the "Ethiopic Extended-A" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock ETHIOPIC_EXTENDED_A =
3081N/A new UnicodeBlock("ETHIOPIC_EXTENDED_A",
3081N/A "ETHIOPIC EXTENDED-A",
3081N/A "ETHIOPICEXTENDED-A");
3081N/A
3081N/A /**
3081N/A * Constant for the "Meetei Mayek" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock MEETEI_MAYEK =
3081N/A new UnicodeBlock("MEETEI_MAYEK",
3081N/A "MEETEI MAYEK",
3081N/A "MEETEIMAYEK");
3081N/A
3081N/A /**
3081N/A * Constant for the "Hangul Jamo Extended-B" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock HANGUL_JAMO_EXTENDED_B =
3081N/A new UnicodeBlock("HANGUL_JAMO_EXTENDED_B",
3081N/A "HANGUL JAMO EXTENDED-B",
3081N/A "HANGULJAMOEXTENDED-B");
3081N/A
3081N/A /**
1091N/A * Constant for the "Vertical Forms" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock VERTICAL_FORMS =
1091N/A new UnicodeBlock("VERTICAL_FORMS",
2565N/A "VERTICAL FORMS",
2565N/A "VERTICALFORMS");
1091N/A
1091N/A /**
1091N/A * Constant for the "Ancient Greek Numbers" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock ANCIENT_GREEK_NUMBERS =
1091N/A new UnicodeBlock("ANCIENT_GREEK_NUMBERS",
2565N/A "ANCIENT GREEK NUMBERS",
2565N/A "ANCIENTGREEKNUMBERS");
1091N/A
1091N/A /**
1091N/A * Constant for the "Ancient Symbols" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock ANCIENT_SYMBOLS =
1091N/A new UnicodeBlock("ANCIENT_SYMBOLS",
2565N/A "ANCIENT SYMBOLS",
2565N/A "ANCIENTSYMBOLS");
1091N/A
1091N/A /**
1091N/A * Constant for the "Phaistos Disc" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock PHAISTOS_DISC =
1091N/A new UnicodeBlock("PHAISTOS_DISC",
2565N/A "PHAISTOS DISC",
2565N/A "PHAISTOSDISC");
1091N/A
1091N/A /**
1091N/A * Constant for the "Lycian" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock LYCIAN =
2565N/A new UnicodeBlock("LYCIAN");
1091N/A
1091N/A /**
1091N/A * Constant for the "Carian" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock CARIAN =
2565N/A new UnicodeBlock("CARIAN");
1091N/A
1091N/A /**
1091N/A * Constant for the "Old Persian" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock OLD_PERSIAN =
1091N/A new UnicodeBlock("OLD_PERSIAN",
2565N/A "OLD PERSIAN",
2565N/A "OLDPERSIAN");
1091N/A
1091N/A /**
3081N/A * Constant for the "Imperial Aramaic" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock IMPERIAL_ARAMAIC =
3081N/A new UnicodeBlock("IMPERIAL_ARAMAIC",
3081N/A "IMPERIAL ARAMAIC",
3081N/A "IMPERIALARAMAIC");
3081N/A
3081N/A /**
1091N/A * Constant for the "Phoenician" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock PHOENICIAN =
1091N/A new UnicodeBlock("PHOENICIAN");
1091N/A
1091N/A /**
1091N/A * Constant for the "Lydian" Unicode character block.
1091N/A * @since 1.7
1091N/A */
2565N/A public static final UnicodeBlock LYDIAN =
2565N/A new UnicodeBlock("LYDIAN");
1091N/A
1091N/A /**
1091N/A * Constant for the "Kharoshthi" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock KHAROSHTHI =
1091N/A new UnicodeBlock("KHAROSHTHI");
1091N/A
1091N/A /**
3081N/A * Constant for the "Old South Arabian" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock OLD_SOUTH_ARABIAN =
3081N/A new UnicodeBlock("OLD_SOUTH_ARABIAN",
3081N/A "OLD SOUTH ARABIAN",
3081N/A "OLDSOUTHARABIAN");
3081N/A
3081N/A /**
3081N/A * Constant for the "Avestan" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock AVESTAN =
3081N/A new UnicodeBlock("AVESTAN");
3081N/A
3081N/A /**
3081N/A * Constant for the "Inscriptional Parthian" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock INSCRIPTIONAL_PARTHIAN =
3081N/A new UnicodeBlock("INSCRIPTIONAL_PARTHIAN",
3081N/A "INSCRIPTIONAL PARTHIAN",
3081N/A "INSCRIPTIONALPARTHIAN");
3081N/A
3081N/A /**
3081N/A * Constant for the "Inscriptional Pahlavi" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock INSCRIPTIONAL_PAHLAVI =
3081N/A new UnicodeBlock("INSCRIPTIONAL_PAHLAVI",
3081N/A "INSCRIPTIONAL PAHLAVI",
3081N/A "INSCRIPTIONALPAHLAVI");
3081N/A
3081N/A /**
3081N/A * Constant for the "Old Turkic" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock OLD_TURKIC =
3081N/A new UnicodeBlock("OLD_TURKIC",
3081N/A "OLD TURKIC",
3081N/A "OLDTURKIC");
3081N/A
3081N/A /**
3081N/A * Constant for the "Rumi Numeral Symbols" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock RUMI_NUMERAL_SYMBOLS =
3081N/A new UnicodeBlock("RUMI_NUMERAL_SYMBOLS",
3081N/A "RUMI NUMERAL SYMBOLS",
3081N/A "RUMINUMERALSYMBOLS");
3081N/A
3081N/A /**
3081N/A * Constant for the "Brahmi" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock BRAHMI =
3081N/A new UnicodeBlock("BRAHMI");
3081N/A
3081N/A /**
3081N/A * Constant for the "Kaithi" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock KAITHI =
3081N/A new UnicodeBlock("KAITHI");
3081N/A
3081N/A /**
1091N/A * Constant for the "Cuneiform" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock CUNEIFORM =
1091N/A new UnicodeBlock("CUNEIFORM");
1091N/A
1091N/A /**
1091N/A * Constant for the "Cuneiform Numbers and Punctuation" Unicode
1091N/A * character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock CUNEIFORM_NUMBERS_AND_PUNCTUATION =
1091N/A new UnicodeBlock("CUNEIFORM_NUMBERS_AND_PUNCTUATION",
2565N/A "CUNEIFORM NUMBERS AND PUNCTUATION",
2565N/A "CUNEIFORMNUMBERSANDPUNCTUATION");
1091N/A
1091N/A /**
3081N/A * Constant for the "Egyptian Hieroglyphs" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock EGYPTIAN_HIEROGLYPHS =
3081N/A new UnicodeBlock("EGYPTIAN_HIEROGLYPHS",
3081N/A "EGYPTIAN HIEROGLYPHS",
3081N/A "EGYPTIANHIEROGLYPHS");
3081N/A
3081N/A /**
3081N/A * Constant for the "Bamum Supplement" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock BAMUM_SUPPLEMENT =
3081N/A new UnicodeBlock("BAMUM_SUPPLEMENT",
3081N/A "BAMUM SUPPLEMENT",
3081N/A "BAMUMSUPPLEMENT");
3081N/A
3081N/A /**
3081N/A * Constant for the "Kana Supplement" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock KANA_SUPPLEMENT =
3081N/A new UnicodeBlock("KANA_SUPPLEMENT",
3081N/A "KANA SUPPLEMENT",
3081N/A "KANASUPPLEMENT");
3081N/A
3081N/A /**
1091N/A * Constant for the "Ancient Greek Musical Notation" Unicode character
1091N/A * block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock ANCIENT_GREEK_MUSICAL_NOTATION =
1091N/A new UnicodeBlock("ANCIENT_GREEK_MUSICAL_NOTATION",
2565N/A "ANCIENT GREEK MUSICAL NOTATION",
2565N/A "ANCIENTGREEKMUSICALNOTATION");
1091N/A
1091N/A /**
1091N/A * Constant for the "Counting Rod Numerals" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock COUNTING_ROD_NUMERALS =
1091N/A new UnicodeBlock("COUNTING_ROD_NUMERALS",
2565N/A "COUNTING ROD NUMERALS",
2565N/A "COUNTINGRODNUMERALS");
1091N/A
1091N/A /**
1091N/A * Constant for the "Mahjong Tiles" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock MAHJONG_TILES =
1091N/A new UnicodeBlock("MAHJONG_TILES",
2565N/A "MAHJONG TILES",
2565N/A "MAHJONGTILES");
1091N/A
1091N/A /**
1091N/A * Constant for the "Domino Tiles" Unicode character block.
1091N/A * @since 1.7
1091N/A */
1091N/A public static final UnicodeBlock DOMINO_TILES =
1091N/A new UnicodeBlock("DOMINO_TILES",
2565N/A "DOMINO TILES",
2565N/A "DOMINOTILES");
1091N/A
3081N/A /**
3081N/A * Constant for the "Playing Cards" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock PLAYING_CARDS =
3081N/A new UnicodeBlock("PLAYING_CARDS",
3081N/A "PLAYING CARDS",
3081N/A "PLAYINGCARDS");
3081N/A
3081N/A /**
3081N/A * Constant for the "Enclosed Alphanumeric Supplement" Unicode character
3081N/A * block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock ENCLOSED_ALPHANUMERIC_SUPPLEMENT =
3081N/A new UnicodeBlock("ENCLOSED_ALPHANUMERIC_SUPPLEMENT",
3081N/A "ENCLOSED ALPHANUMERIC SUPPLEMENT",
3081N/A "ENCLOSEDALPHANUMERICSUPPLEMENT");
3081N/A
3081N/A /**
3081N/A * Constant for the "Enclosed Ideographic Supplement" Unicode character
3081N/A * block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock ENCLOSED_IDEOGRAPHIC_SUPPLEMENT =
3081N/A new UnicodeBlock("ENCLOSED_IDEOGRAPHIC_SUPPLEMENT",
3081N/A "ENCLOSED IDEOGRAPHIC SUPPLEMENT",
3081N/A "ENCLOSEDIDEOGRAPHICSUPPLEMENT");
3081N/A
3081N/A /**
3081N/A * Constant for the "Miscellaneous Symbols And Pictographs" Unicode
3081N/A * character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS =
3081N/A new UnicodeBlock("MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS",
3081N/A "MISCELLANEOUS SYMBOLS AND PICTOGRAPHS",
3081N/A "MISCELLANEOUSSYMBOLSANDPICTOGRAPHS");
3081N/A
3081N/A /**
3081N/A * Constant for the "Emoticons" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock EMOTICONS =
3081N/A new UnicodeBlock("EMOTICONS");
3081N/A
3081N/A /**
3081N/A * Constant for the "Transport And Map Symbols" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock TRANSPORT_AND_MAP_SYMBOLS =
3081N/A new UnicodeBlock("TRANSPORT_AND_MAP_SYMBOLS",
3081N/A "TRANSPORT AND MAP SYMBOLS",
3081N/A "TRANSPORTANDMAPSYMBOLS");
3081N/A
3081N/A /**
3081N/A * Constant for the "Alchemical Symbols" Unicode character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock ALCHEMICAL_SYMBOLS =
3081N/A new UnicodeBlock("ALCHEMICAL_SYMBOLS",
3081N/A "ALCHEMICAL SYMBOLS",
3081N/A "ALCHEMICALSYMBOLS");
3081N/A
3081N/A /**
3081N/A * Constant for the "CJK Unified Ideographs Extension C" Unicode
3081N/A * character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C =
3081N/A new UnicodeBlock("CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C",
3081N/A "CJK UNIFIED IDEOGRAPHS EXTENSION C",
3081N/A "CJKUNIFIEDIDEOGRAPHSEXTENSIONC");
3081N/A
3081N/A /**
3081N/A * Constant for the "CJK Unified Ideographs Extension D" Unicode
3081N/A * character block.
3081N/A * @since 1.7
3081N/A */
3081N/A public static final UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D =
3081N/A new UnicodeBlock("CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D",
3081N/A "CJK UNIFIED IDEOGRAPHS EXTENSION D",
3081N/A "CJKUNIFIEDIDEOGRAPHSEXTENSIOND");
3081N/A
0N/A private static final int blockStarts[] = {
1091N/A 0x0000, // 0000..007F; Basic Latin
1091N/A 0x0080, // 0080..00FF; Latin-1 Supplement
1091N/A 0x0100, // 0100..017F; Latin Extended-A
1091N/A 0x0180, // 0180..024F; Latin Extended-B
1091N/A 0x0250, // 0250..02AF; IPA Extensions
1091N/A 0x02B0, // 02B0..02FF; Spacing Modifier Letters
1091N/A 0x0300, // 0300..036F; Combining Diacritical Marks
1091N/A 0x0370, // 0370..03FF; Greek and Coptic
1091N/A 0x0400, // 0400..04FF; Cyrillic
1091N/A 0x0500, // 0500..052F; Cyrillic Supplement
1091N/A 0x0530, // 0530..058F; Armenian
1091N/A 0x0590, // 0590..05FF; Hebrew
1091N/A 0x0600, // 0600..06FF; Arabic
2565N/A 0x0700, // 0700..074F; Syriac
1091N/A 0x0750, // 0750..077F; Arabic Supplement
1091N/A 0x0780, // 0780..07BF; Thaana
1091N/A 0x07C0, // 07C0..07FF; NKo
3081N/A 0x0800, // 0800..083F; Samaritan
3081N/A 0x0840, // 0840..085F; Mandaic
3081N/A 0x0860, // unassigned
1091N/A 0x0900, // 0900..097F; Devanagari
1091N/A 0x0980, // 0980..09FF; Bengali
1091N/A 0x0A00, // 0A00..0A7F; Gurmukhi
1091N/A 0x0A80, // 0A80..0AFF; Gujarati
1091N/A 0x0B00, // 0B00..0B7F; Oriya
1091N/A 0x0B80, // 0B80..0BFF; Tamil
1091N/A 0x0C00, // 0C00..0C7F; Telugu
1091N/A 0x0C80, // 0C80..0CFF; Kannada
1091N/A 0x0D00, // 0D00..0D7F; Malayalam
1091N/A 0x0D80, // 0D80..0DFF; Sinhala
1091N/A 0x0E00, // 0E00..0E7F; Thai
1091N/A 0x0E80, // 0E80..0EFF; Lao
1091N/A 0x0F00, // 0F00..0FFF; Tibetan
1091N/A 0x1000, // 1000..109F; Myanmar
1091N/A 0x10A0, // 10A0..10FF; Georgian
1091N/A 0x1100, // 1100..11FF; Hangul Jamo
1091N/A 0x1200, // 1200..137F; Ethiopic
1091N/A 0x1380, // 1380..139F; Ethiopic Supplement
1091N/A 0x13A0, // 13A0..13FF; Cherokee
1091N/A 0x1400, // 1400..167F; Unified Canadian Aboriginal Syllabics
1091N/A 0x1680, // 1680..169F; Ogham
1091N/A 0x16A0, // 16A0..16FF; Runic
1091N/A 0x1700, // 1700..171F; Tagalog
1091N/A 0x1720, // 1720..173F; Hanunoo
1091N/A 0x1740, // 1740..175F; Buhid
1091N/A 0x1760, // 1760..177F; Tagbanwa
1091N/A 0x1780, // 1780..17FF; Khmer
1091N/A 0x1800, // 1800..18AF; Mongolian
3081N/A 0x18B0, // 18B0..18FF; Unified Canadian Aboriginal Syllabics Extended
1091N/A 0x1900, // 1900..194F; Limbu
1091N/A 0x1950, // 1950..197F; Tai Le
1091N/A 0x1980, // 1980..19DF; New Tai Lue
1091N/A 0x19E0, // 19E0..19FF; Khmer Symbols
1091N/A 0x1A00, // 1A00..1A1F; Buginese
3081N/A 0x1A20, // 1A20..1AAF; Tai Tham
3081N/A 0x1AB0, // unassigned
1091N/A 0x1B00, // 1B00..1B7F; Balinese
1091N/A 0x1B80, // 1B80..1BBF; Sundanese
3081N/A 0x1BC0, // 1BC0..1BFF; Batak
1091N/A 0x1C00, // 1C00..1C4F; Lepcha
1091N/A 0x1C50, // 1C50..1C7F; Ol Chiki
1091N/A 0x1C80, // unassigned
3081N/A 0x1CD0, // 1CD0..1CFF; Vedic Extensions
1091N/A 0x1D00, // 1D00..1D7F; Phonetic Extensions
1091N/A 0x1D80, // 1D80..1DBF; Phonetic Extensions Supplement
1091N/A 0x1DC0, // 1DC0..1DFF; Combining Diacritical Marks Supplement
1091N/A 0x1E00, // 1E00..1EFF; Latin Extended Additional
1091N/A 0x1F00, // 1F00..1FFF; Greek Extended
1091N/A 0x2000, // 2000..206F; General Punctuation
1091N/A 0x2070, // 2070..209F; Superscripts and Subscripts
1091N/A 0x20A0, // 20A0..20CF; Currency Symbols
1091N/A 0x20D0, // 20D0..20FF; Combining Diacritical Marks for Symbols
1091N/A 0x2100, // 2100..214F; Letterlike Symbols
1091N/A 0x2150, // 2150..218F; Number Forms
1091N/A 0x2190, // 2190..21FF; Arrows
1091N/A 0x2200, // 2200..22FF; Mathematical Operators
1091N/A 0x2300, // 2300..23FF; Miscellaneous Technical
1091N/A 0x2400, // 2400..243F; Control Pictures
1091N/A 0x2440, // 2440..245F; Optical Character Recognition
1091N/A 0x2460, // 2460..24FF; Enclosed Alphanumerics
1091N/A 0x2500, // 2500..257F; Box Drawing
1091N/A 0x2580, // 2580..259F; Block Elements
1091N/A 0x25A0, // 25A0..25FF; Geometric Shapes
1091N/A 0x2600, // 2600..26FF; Miscellaneous Symbols
1091N/A 0x2700, // 2700..27BF; Dingbats
1091N/A 0x27C0, // 27C0..27EF; Miscellaneous Mathematical Symbols-A
1091N/A 0x27F0, // 27F0..27FF; Supplemental Arrows-A
1091N/A 0x2800, // 2800..28FF; Braille Patterns
1091N/A 0x2900, // 2900..297F; Supplemental Arrows-B
1091N/A 0x2980, // 2980..29FF; Miscellaneous Mathematical Symbols-B
1091N/A 0x2A00, // 2A00..2AFF; Supplemental Mathematical Operators
1091N/A 0x2B00, // 2B00..2BFF; Miscellaneous Symbols and Arrows
1091N/A 0x2C00, // 2C00..2C5F; Glagolitic
1091N/A 0x2C60, // 2C60..2C7F; Latin Extended-C
1091N/A 0x2C80, // 2C80..2CFF; Coptic
1091N/A 0x2D00, // 2D00..2D2F; Georgian Supplement
1091N/A 0x2D30, // 2D30..2D7F; Tifinagh
1091N/A 0x2D80, // 2D80..2DDF; Ethiopic Extended
1091N/A 0x2DE0, // 2DE0..2DFF; Cyrillic Extended-A
1091N/A 0x2E00, // 2E00..2E7F; Supplemental Punctuation
1091N/A 0x2E80, // 2E80..2EFF; CJK Radicals Supplement
1091N/A 0x2F00, // 2F00..2FDF; Kangxi Radicals
1091N/A 0x2FE0, // unassigned
1091N/A 0x2FF0, // 2FF0..2FFF; Ideographic Description Characters
1091N/A 0x3000, // 3000..303F; CJK Symbols and Punctuation
1091N/A 0x3040, // 3040..309F; Hiragana
1091N/A 0x30A0, // 30A0..30FF; Katakana
1091N/A 0x3100, // 3100..312F; Bopomofo
1091N/A 0x3130, // 3130..318F; Hangul Compatibility Jamo
1091N/A 0x3190, // 3190..319F; Kanbun
1091N/A 0x31A0, // 31A0..31BF; Bopomofo Extended
1091N/A 0x31C0, // 31C0..31EF; CJK Strokes
1091N/A 0x31F0, // 31F0..31FF; Katakana Phonetic Extensions
1091N/A 0x3200, // 3200..32FF; Enclosed CJK Letters and Months
1091N/A 0x3300, // 3300..33FF; CJK Compatibility
1091N/A 0x3400, // 3400..4DBF; CJK Unified Ideographs Extension A
1091N/A 0x4DC0, // 4DC0..4DFF; Yijing Hexagram Symbols
3081N/A 0x4E00, // 4E00..9FFF; CJK Unified Ideographs
1091N/A 0xA000, // A000..A48F; Yi Syllables
1091N/A 0xA490, // A490..A4CF; Yi Radicals
3081N/A 0xA4D0, // A4D0..A4FF; Lisu
1091N/A 0xA500, // A500..A63F; Vai
1091N/A 0xA640, // A640..A69F; Cyrillic Extended-B
3081N/A 0xA6A0, // A6A0..A6FF; Bamum
1091N/A 0xA700, // A700..A71F; Modifier Tone Letters
1091N/A 0xA720, // A720..A7FF; Latin Extended-D
1091N/A 0xA800, // A800..A82F; Syloti Nagri
3081N/A 0xA830, // A830..A83F; Common Indic Number Forms
1091N/A 0xA840, // A840..A87F; Phags-pa
1091N/A 0xA880, // A880..A8DF; Saurashtra
3081N/A 0xA8E0, // A8E0..A8FF; Devanagari Extended
1091N/A 0xA900, // A900..A92F; Kayah Li
1091N/A 0xA930, // A930..A95F; Rejang
3081N/A 0xA960, // A960..A97F; Hangul Jamo Extended-A
3081N/A 0xA980, // A980..A9DF; Javanese
3081N/A 0xA9E0, // unassigned
1091N/A 0xAA00, // AA00..AA5F; Cham
3081N/A 0xAA60, // AA60..AA7F; Myanmar Extended-A
3081N/A 0xAA80, // AA80..AADF; Tai Viet
3081N/A 0xAAE0, // unassigned
3081N/A 0xAB00, // AB00..AB2F; Ethiopic Extended-A
3081N/A 0xAB30, // unassigned
3081N/A 0xABC0, // ABC0..ABFF; Meetei Mayek
1091N/A 0xAC00, // AC00..D7AF; Hangul Syllables
3081N/A 0xD7B0, // D7B0..D7FF; Hangul Jamo Extended-B
1091N/A 0xD800, // D800..DB7F; High Surrogates
1091N/A 0xDB80, // DB80..DBFF; High Private Use Surrogates
1091N/A 0xDC00, // DC00..DFFF; Low Surrogates
1091N/A 0xE000, // E000..F8FF; Private Use Area
1091N/A 0xF900, // F900..FAFF; CJK Compatibility Ideographs
1091N/A 0xFB00, // FB00..FB4F; Alphabetic Presentation Forms
1091N/A 0xFB50, // FB50..FDFF; Arabic Presentation Forms-A
1091N/A 0xFE00, // FE00..FE0F; Variation Selectors
1091N/A 0xFE10, // FE10..FE1F; Vertical Forms
1091N/A 0xFE20, // FE20..FE2F; Combining Half Marks
1091N/A 0xFE30, // FE30..FE4F; CJK Compatibility Forms
1091N/A 0xFE50, // FE50..FE6F; Small Form Variants
1091N/A 0xFE70, // FE70..FEFF; Arabic Presentation Forms-B
1091N/A 0xFF00, // FF00..FFEF; Halfwidth and Fullwidth Forms
1091N/A 0xFFF0, // FFF0..FFFF; Specials
1091N/A 0x10000, // 10000..1007F; Linear B Syllabary
1091N/A 0x10080, // 10080..100FF; Linear B Ideograms
1091N/A 0x10100, // 10100..1013F; Aegean Numbers
1091N/A 0x10140, // 10140..1018F; Ancient Greek Numbers
1091N/A 0x10190, // 10190..101CF; Ancient Symbols
1091N/A 0x101D0, // 101D0..101FF; Phaistos Disc
1091N/A 0x10200, // unassigned
1091N/A 0x10280, // 10280..1029F; Lycian
1091N/A 0x102A0, // 102A0..102DF; Carian
1091N/A 0x102E0, // unassigned
1091N/A 0x10300, // 10300..1032F; Old Italic
1091N/A 0x10330, // 10330..1034F; Gothic
1091N/A 0x10350, // unassigned
1091N/A 0x10380, // 10380..1039F; Ugaritic
1091N/A 0x103A0, // 103A0..103DF; Old Persian
1091N/A 0x103E0, // unassigned
3081N/A 0x10400, // 10400..1044F; Deseret
1091N/A 0x10450, // 10450..1047F; Shavian
1091N/A 0x10480, // 10480..104AF; Osmanya
1091N/A 0x104B0, // unassigned
1091N/A 0x10800, // 10800..1083F; Cypriot Syllabary
3081N/A 0x10840, // 10840..1085F; Imperial Aramaic
3081N/A 0x10860, // unassigned
1091N/A 0x10900, // 10900..1091F; Phoenician
1091N/A 0x10920, // 10920..1093F; Lydian
1091N/A 0x10940, // unassigned
1091N/A 0x10A00, // 10A00..10A5F; Kharoshthi
3081N/A 0x10A60, // 10A60..10A7F; Old South Arabian
3081N/A 0x10A80, // unassigned
3081N/A 0x10B00, // 10B00..10B3F; Avestan
3081N/A 0x10B40, // 10B40..10B5F; Inscriptional Parthian
3081N/A 0x10B60, // 10B60..10B7F; Inscriptional Pahlavi
3081N/A 0x10B80, // unassigned
3081N/A 0x10C00, // 10C00..10C4F; Old Turkic
3081N/A 0x10C50, // unassigned
3081N/A 0x10E60, // 10E60..10E7F; Rumi Numeral Symbols
3081N/A 0x10E80, // unassigned
3081N/A 0x11000, // 11000..1107F; Brahmi
3081N/A 0x11080, // 11080..110CF; Kaithi
3081N/A 0x110D0, // unassigned
1091N/A 0x12000, // 12000..123FF; Cuneiform
1091N/A 0x12400, // 12400..1247F; Cuneiform Numbers and Punctuation
1091N/A 0x12480, // unassigned
3081N/A 0x13000, // 13000..1342F; Egyptian Hieroglyphs
3081N/A 0x13430, // unassigned
3081N/A 0x16800, // 16800..16A3F; Bamum Supplement
3081N/A 0x16A40, // unassigned
3081N/A 0x1B000, // 1B000..1B0FF; Kana Supplement
3081N/A 0x1B100, // unassigned
1091N/A 0x1D000, // 1D000..1D0FF; Byzantine Musical Symbols
1091N/A 0x1D100, // 1D100..1D1FF; Musical Symbols
1091N/A 0x1D200, // 1D200..1D24F; Ancient Greek Musical Notation
1091N/A 0x1D250, // unassigned
1091N/A 0x1D300, // 1D300..1D35F; Tai Xuan Jing Symbols
1091N/A 0x1D360, // 1D360..1D37F; Counting Rod Numerals
1091N/A 0x1D380, // unassigned
1091N/A 0x1D400, // 1D400..1D7FF; Mathematical Alphanumeric Symbols
1091N/A 0x1D800, // unassigned
1091N/A 0x1F000, // 1F000..1F02F; Mahjong Tiles
1091N/A 0x1F030, // 1F030..1F09F; Domino Tiles
3081N/A 0x1F0A0, // 1F0A0..1F0FF; Playing Cards
3081N/A 0x1F100, // 1F100..1F1FF; Enclosed Alphanumeric Supplement
3081N/A 0x1F200, // 1F200..1F2FF; Enclosed Ideographic Supplement
3081N/A 0x1F300, // 1F300..1F5FF; Miscellaneous Symbols And Pictographs
3081N/A 0x1F600, // 1F600..1F64F; Emoticons
3081N/A 0x1F650, // unassigned
3081N/A 0x1F680, // 1F680..1F6FF; Transport And Map Symbols
3081N/A 0x1F700, // 1F700..1F77F; Alchemical Symbols
3081N/A 0x1F780, // unassigned
1091N/A 0x20000, // 20000..2A6DF; CJK Unified Ideographs Extension B
1091N/A 0x2A6E0, // unassigned
3081N/A 0x2A700, // 2A700..2B73F; CJK Unified Ideographs Extension C
3081N/A 0x2B740, // 2B740..2B81F; CJK Unified Ideographs Extension D
3081N/A 0x2B820, // unassigned
1091N/A 0x2F800, // 2F800..2FA1F; CJK Compatibility Ideographs Supplement
1091N/A 0x2FA20, // unassigned
1091N/A 0xE0000, // E0000..E007F; Tags
1091N/A 0xE0080, // unassigned
1091N/A 0xE0100, // E0100..E01EF; Variation Selectors Supplement
1091N/A 0xE01F0, // unassigned
1091N/A 0xF0000, // F0000..FFFFF; Supplementary Private Use Area-A
3081N/A 0x100000 // 100000..10FFFF; Supplementary Private Use Area-B
0N/A };
0N/A
0N/A private static final UnicodeBlock[] blocks = {
0N/A BASIC_LATIN,
0N/A LATIN_1_SUPPLEMENT,
0N/A LATIN_EXTENDED_A,
0N/A LATIN_EXTENDED_B,
0N/A IPA_EXTENSIONS,
0N/A SPACING_MODIFIER_LETTERS,
0N/A COMBINING_DIACRITICAL_MARKS,
0N/A GREEK,
0N/A CYRILLIC,
0N/A CYRILLIC_SUPPLEMENTARY,
0N/A ARMENIAN,
0N/A HEBREW,
0N/A ARABIC,
0N/A SYRIAC,
1091N/A ARABIC_SUPPLEMENT,
0N/A THAANA,
1091N/A NKO,
3081N/A SAMARITAN,
3081N/A MANDAIC,
0N/A null,
0N/A DEVANAGARI,
0N/A BENGALI,
0N/A GURMUKHI,
0N/A GUJARATI,
0N/A ORIYA,
0N/A TAMIL,
0N/A TELUGU,
0N/A KANNADA,
0N/A MALAYALAM,
0N/A SINHALA,
0N/A THAI,
0N/A LAO,
0N/A TIBETAN,
0N/A MYANMAR,
0N/A GEORGIAN,
0N/A HANGUL_JAMO,
0N/A ETHIOPIC,
1091N/A ETHIOPIC_SUPPLEMENT,
0N/A CHEROKEE,
0N/A UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS,
0N/A OGHAM,
0N/A RUNIC,
0N/A TAGALOG,
0N/A HANUNOO,
0N/A BUHID,
0N/A TAGBANWA,
0N/A KHMER,
0N/A MONGOLIAN,
3081N/A UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED,
0N/A LIMBU,
0N/A TAI_LE,
1091N/A NEW_TAI_LUE,
1091N/A KHMER_SYMBOLS,
1091N/A BUGINESE,
3081N/A TAI_THAM,
0N/A null,
1091N/A BALINESE,
1091N/A SUNDANESE,
3081N/A BATAK,
1091N/A LEPCHA,
1091N/A OL_CHIKI,
0N/A null,
3081N/A VEDIC_EXTENSIONS,
0N/A PHONETIC_EXTENSIONS,
1091N/A PHONETIC_EXTENSIONS_SUPPLEMENT,
1091N/A COMBINING_DIACRITICAL_MARKS_SUPPLEMENT,
0N/A LATIN_EXTENDED_ADDITIONAL,
0N/A GREEK_EXTENDED,
0N/A GENERAL_PUNCTUATION,
0N/A SUPERSCRIPTS_AND_SUBSCRIPTS,
0N/A CURRENCY_SYMBOLS,
0N/A COMBINING_MARKS_FOR_SYMBOLS,
0N/A LETTERLIKE_SYMBOLS,
0N/A NUMBER_FORMS,
0N/A ARROWS,
0N/A MATHEMATICAL_OPERATORS,
0N/A MISCELLANEOUS_TECHNICAL,
0N/A CONTROL_PICTURES,
0N/A OPTICAL_CHARACTER_RECOGNITION,
0N/A ENCLOSED_ALPHANUMERICS,
0N/A BOX_DRAWING,
0N/A BLOCK_ELEMENTS,
0N/A GEOMETRIC_SHAPES,
0N/A MISCELLANEOUS_SYMBOLS,
0N/A DINGBATS,
0N/A MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A,
0N/A SUPPLEMENTAL_ARROWS_A,
0N/A BRAILLE_PATTERNS,
0N/A SUPPLEMENTAL_ARROWS_B,
0N/A MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B,
0N/A SUPPLEMENTAL_MATHEMATICAL_OPERATORS,
0N/A MISCELLANEOUS_SYMBOLS_AND_ARROWS,
1091N/A GLAGOLITIC,
1091N/A LATIN_EXTENDED_C,
1091N/A COPTIC,
1091N/A GEORGIAN_SUPPLEMENT,
1091N/A TIFINAGH,
1091N/A ETHIOPIC_EXTENDED,
1091N/A CYRILLIC_EXTENDED_A,
1091N/A SUPPLEMENTAL_PUNCTUATION,
0N/A CJK_RADICALS_SUPPLEMENT,
0N/A KANGXI_RADICALS,
0N/A null,
0N/A IDEOGRAPHIC_DESCRIPTION_CHARACTERS,
0N/A CJK_SYMBOLS_AND_PUNCTUATION,
0N/A HIRAGANA,
0N/A KATAKANA,
0N/A BOPOMOFO,
0N/A HANGUL_COMPATIBILITY_JAMO,
0N/A KANBUN,
0N/A BOPOMOFO_EXTENDED,
1091N/A CJK_STROKES,
0N/A KATAKANA_PHONETIC_EXTENSIONS,
0N/A ENCLOSED_CJK_LETTERS_AND_MONTHS,
0N/A CJK_COMPATIBILITY,
0N/A CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A,
0N/A YIJING_HEXAGRAM_SYMBOLS,
0N/A CJK_UNIFIED_IDEOGRAPHS,
0N/A YI_SYLLABLES,
0N/A YI_RADICALS,
3081N/A LISU,
1091N/A VAI,
1091N/A CYRILLIC_EXTENDED_B,
3081N/A BAMUM,
1091N/A MODIFIER_TONE_LETTERS,
1091N/A LATIN_EXTENDED_D,
1091N/A SYLOTI_NAGRI,
3081N/A COMMON_INDIC_NUMBER_FORMS,
1091N/A PHAGS_PA,
1091N/A SAURASHTRA,
3081N/A DEVANAGARI_EXTENDED,
1091N/A KAYAH_LI,
1091N/A REJANG,
3081N/A HANGUL_JAMO_EXTENDED_A,
3081N/A JAVANESE,
1091N/A null,
1091N/A CHAM,
3081N/A MYANMAR_EXTENDED_A,
3081N/A TAI_VIET,
1091N/A null,
3081N/A ETHIOPIC_EXTENDED_A,
3081N/A null,
3081N/A MEETEI_MAYEK,
0N/A HANGUL_SYLLABLES,
3081N/A HANGUL_JAMO_EXTENDED_B,
0N/A HIGH_SURROGATES,
0N/A HIGH_PRIVATE_USE_SURROGATES,
0N/A LOW_SURROGATES,
0N/A PRIVATE_USE_AREA,
0N/A CJK_COMPATIBILITY_IDEOGRAPHS,
0N/A ALPHABETIC_PRESENTATION_FORMS,
0N/A ARABIC_PRESENTATION_FORMS_A,
0N/A VARIATION_SELECTORS,
1091N/A VERTICAL_FORMS,
0N/A COMBINING_HALF_MARKS,
0N/A CJK_COMPATIBILITY_FORMS,
0N/A SMALL_FORM_VARIANTS,
0N/A ARABIC_PRESENTATION_FORMS_B,
0N/A HALFWIDTH_AND_FULLWIDTH_FORMS,
0N/A SPECIALS,
0N/A LINEAR_B_SYLLABARY,
0N/A LINEAR_B_IDEOGRAMS,
0N/A AEGEAN_NUMBERS,
1091N/A ANCIENT_GREEK_NUMBERS,
1091N/A ANCIENT_SYMBOLS,
1091N/A PHAISTOS_DISC,
1091N/A null,
1091N/A LYCIAN,
1091N/A CARIAN,
0N/A null,
0N/A OLD_ITALIC,
0N/A GOTHIC,
0N/A null,
0N/A UGARITIC,
1091N/A OLD_PERSIAN,
0N/A null,
0N/A DESERET,
0N/A SHAVIAN,
0N/A OSMANYA,
0N/A null,
0N/A CYPRIOT_SYLLABARY,
3081N/A IMPERIAL_ARAMAIC,
0N/A null,
1091N/A PHOENICIAN,
1091N/A LYDIAN,
1091N/A null,
1091N/A KHAROSHTHI,
3081N/A OLD_SOUTH_ARABIAN,
3081N/A null,
3081N/A AVESTAN,
3081N/A INSCRIPTIONAL_PARTHIAN,
3081N/A INSCRIPTIONAL_PAHLAVI,
3081N/A null,
3081N/A OLD_TURKIC,
3081N/A null,
3081N/A RUMI_NUMERAL_SYMBOLS,
3081N/A null,
3081N/A BRAHMI,
3081N/A KAITHI,
1091N/A null,
1091N/A CUNEIFORM,
1091N/A CUNEIFORM_NUMBERS_AND_PUNCTUATION,
1091N/A null,
3081N/A EGYPTIAN_HIEROGLYPHS,
3081N/A null,
3081N/A BAMUM_SUPPLEMENT,
3081N/A null,
3081N/A KANA_SUPPLEMENT,
3081N/A null,
0N/A BYZANTINE_MUSICAL_SYMBOLS,
0N/A MUSICAL_SYMBOLS,
1091N/A ANCIENT_GREEK_MUSICAL_NOTATION,
0N/A null,
0N/A TAI_XUAN_JING_SYMBOLS,
1091N/A COUNTING_ROD_NUMERALS,
0N/A null,
0N/A MATHEMATICAL_ALPHANUMERIC_SYMBOLS,
0N/A null,
1091N/A MAHJONG_TILES,
1091N/A DOMINO_TILES,
3081N/A PLAYING_CARDS,
3081N/A ENCLOSED_ALPHANUMERIC_SUPPLEMENT,
3081N/A ENCLOSED_IDEOGRAPHIC_SUPPLEMENT,
3081N/A MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS,
3081N/A EMOTICONS,
3081N/A null,
3081N/A TRANSPORT_AND_MAP_SYMBOLS,
3081N/A ALCHEMICAL_SYMBOLS,
1091N/A null,
0N/A CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B,
0N/A null,
3081N/A CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C,
3081N/A CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D,
3081N/A null,
0N/A CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT,
0N/A null,
0N/A TAGS,
0N/A null,
0N/A VARIATION_SELECTORS_SUPPLEMENT,
0N/A null,
0N/A SUPPLEMENTARY_PRIVATE_USE_AREA_A,
0N/A SUPPLEMENTARY_PRIVATE_USE_AREA_B
0N/A };
0N/A
0N/A
0N/A /**
0N/A * Returns the object representing the Unicode block containing the
3827N/A * given character, or {@code null} if the character is not a
0N/A * member of a defined block.
0N/A *
2565N/A * <p><b>Note:</b> This method cannot handle
2565N/A * <a href="Character.html#supplementary"> supplementary
2565N/A * characters</a>. To support all Unicode characters, including
2565N/A * supplementary characters, use the {@link #of(int)} method.
0N/A *
0N/A * @param c The character in question
3827N/A * @return The {@code UnicodeBlock} instance representing the
0N/A * Unicode block of which this character is a member, or
3827N/A * {@code null} if the character is not a member of any
0N/A * Unicode block
0N/A */
0N/A public static UnicodeBlock of(char c) {
0N/A return of((int)c);
0N/A }
0N/A
0N/A /**
0N/A * Returns the object representing the Unicode block
0N/A * containing the given character (Unicode code point), or
3827N/A * {@code null} if the character is not a member of a
0N/A * defined block.
0N/A *
2565N/A * @param codePoint the character (Unicode code point) in question.
3827N/A * @return The {@code UnicodeBlock} instance representing the
0N/A * Unicode block of which this character is a member, or
3827N/A * {@code null} if the character is not a member of any
0N/A * Unicode block
2565N/A * @exception IllegalArgumentException if the specified
3827N/A * {@code codePoint} is an invalid Unicode code point.
2565N/A * @see Character#isValidCodePoint(int)
2565N/A * @since 1.5
0N/A */
0N/A public static UnicodeBlock of(int codePoint) {
0N/A if (!isValidCodePoint(codePoint)) {
0N/A throw new IllegalArgumentException();
0N/A }
0N/A
0N/A int top, bottom, current;
0N/A bottom = 0;
0N/A top = blockStarts.length;
0N/A current = top/2;
0N/A
0N/A // invariant: top > current >= bottom && codePoint >= unicodeBlockStarts[bottom]
0N/A while (top - bottom > 1) {
0N/A if (codePoint >= blockStarts[current]) {
0N/A bottom = current;
0N/A } else {
0N/A top = current;
0N/A }
0N/A current = (top + bottom) / 2;
0N/A }
0N/A return blocks[current];
0N/A }
0N/A
0N/A /**
0N/A * Returns the UnicodeBlock with the given name. Block
0N/A * names are determined by The Unicode Standard. The file
0N/A * Blocks-&lt;version&gt;.txt defines blocks for a particular
0N/A * version of the standard. The {@link Character} class specifies
0N/A * the version of the standard that it supports.
0N/A * <p>
0N/A * This method accepts block names in the following forms:
0N/A * <ol>
0N/A * <li> Canonical block names as defined by the Unicode Standard.
0N/A * For example, the standard defines a "Basic Latin" block. Therefore, this
0N/A * method accepts "Basic Latin" as a valid block name. The documentation of
0N/A * each UnicodeBlock provides the canonical name.
0N/A * <li>Canonical block names with all spaces removed. For example, "BasicLatin"
0N/A * is a valid block name for the "Basic Latin" block.
0N/A * <li>The text representation of each constant UnicodeBlock identifier.
0N/A * For example, this method will return the {@link #BASIC_LATIN} block if
0N/A * provided with the "BASIC_LATIN" name. This form replaces all spaces and
2565N/A * hyphens in the canonical name with underscores.
0N/A * </ol>
0N/A * Finally, character case is ignored for all of the valid block name forms.
0N/A * For example, "BASIC_LATIN" and "basic_latin" are both valid block names.
0N/A * The en_US locale's case mapping rules are used to provide case-insensitive
0N/A * string comparisons for block name validation.
0N/A * <p>
0N/A * If the Unicode Standard changes block names, both the previous and
0N/A * current names will be accepted.
0N/A *
3827N/A * @param blockName A {@code UnicodeBlock} name.
3827N/A * @return The {@code UnicodeBlock} instance identified
3827N/A * by {@code blockName}
3827N/A * @throws IllegalArgumentException if {@code blockName} is an
0N/A * invalid name
3827N/A * @throws NullPointerException if {@code blockName} is null
0N/A * @since 1.5
0N/A */
0N/A public static final UnicodeBlock forName(String blockName) {
2566N/A UnicodeBlock block = map.get(blockName.toUpperCase(Locale.US));
0N/A if (block == null) {
0N/A throw new IllegalArgumentException();
0N/A }
0N/A return block;
0N/A }
0N/A }
0N/A
0N/A
0N/A /**
2401N/A * A family of character subsets representing the character scripts
2401N/A * defined in the <a href="http://www.unicode.org/reports/tr24/">
2401N/A * <i>Unicode Standard Annex #24: Script Names</i></a>. Every Unicode
2401N/A * character is assigned to a single Unicode script, either a specific
2401N/A * script, such as {@link Character.UnicodeScript#LATIN Latin}, or
2401N/A * one of the following three special values,
2401N/A * {@link Character.UnicodeScript#INHERITED Inherited},
2401N/A * {@link Character.UnicodeScript#COMMON Common} or
2401N/A * {@link Character.UnicodeScript#UNKNOWN Unknown}.
2401N/A *
2401N/A * @since 1.7
2401N/A */
2401N/A public static enum UnicodeScript {
2401N/A /**
2401N/A * Unicode script "Common".
2401N/A */
2401N/A COMMON,
2401N/A
2401N/A /**
2401N/A * Unicode script "Latin".
2401N/A */
2401N/A LATIN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Greek".
2401N/A */
2401N/A GREEK,
2401N/A
2401N/A /**
2401N/A * Unicode script "Cyrillic".
2401N/A */
2401N/A CYRILLIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Armenian".
2401N/A */
2401N/A ARMENIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Hebrew".
2401N/A */
2401N/A HEBREW,
2401N/A
2401N/A /**
2401N/A * Unicode script "Arabic".
2401N/A */
2401N/A ARABIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Syriac".
2401N/A */
2401N/A SYRIAC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Thaana".
2401N/A */
2401N/A THAANA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Devanagari".
2401N/A */
2401N/A DEVANAGARI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Bengali".
2401N/A */
2401N/A BENGALI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Gurmukhi".
2401N/A */
2401N/A GURMUKHI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Gujarati".
2401N/A */
2401N/A GUJARATI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Oriya".
2401N/A */
2401N/A ORIYA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Tamil".
2401N/A */
2401N/A TAMIL,
2401N/A
2401N/A /**
2401N/A * Unicode script "Telugu".
2401N/A */
2401N/A TELUGU,
2401N/A
2401N/A /**
2401N/A * Unicode script "Kannada".
2401N/A */
2401N/A KANNADA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Malayalam".
2401N/A */
2401N/A MALAYALAM,
2401N/A
2401N/A /**
2401N/A * Unicode script "Sinhala".
2401N/A */
2401N/A SINHALA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Thai".
2401N/A */
2401N/A THAI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Lao".
2401N/A */
2401N/A LAO,
2401N/A
2401N/A /**
2401N/A * Unicode script "Tibetan".
2401N/A */
2401N/A TIBETAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Myanmar".
2401N/A */
2401N/A MYANMAR,
2401N/A
2401N/A /**
2401N/A * Unicode script "Georgian".
2401N/A */
2401N/A GEORGIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Hangul".
2401N/A */
2401N/A HANGUL,
2401N/A
2401N/A /**
2401N/A * Unicode script "Ethiopic".
2401N/A */
2401N/A ETHIOPIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Cherokee".
2401N/A */
2401N/A CHEROKEE,
2401N/A
2401N/A /**
2401N/A * Unicode script "Canadian_Aboriginal".
2401N/A */
2401N/A CANADIAN_ABORIGINAL,
2401N/A
2401N/A /**
2401N/A * Unicode script "Ogham".
2401N/A */
2401N/A OGHAM,
2401N/A
2401N/A /**
2401N/A * Unicode script "Runic".
2401N/A */
2401N/A RUNIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Khmer".
2401N/A */
2401N/A KHMER,
2401N/A
2401N/A /**
2401N/A * Unicode script "Mongolian".
2401N/A */
2401N/A MONGOLIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Hiragana".
2401N/A */
2401N/A HIRAGANA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Katakana".
2401N/A */
2401N/A KATAKANA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Bopomofo".
2401N/A */
2401N/A BOPOMOFO,
2401N/A
2401N/A /**
2401N/A * Unicode script "Han".
2401N/A */
2401N/A HAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Yi".
2401N/A */
2401N/A YI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Old_Italic".
2401N/A */
2401N/A OLD_ITALIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Gothic".
2401N/A */
2401N/A GOTHIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Deseret".
2401N/A */
2401N/A DESERET,
2401N/A
2401N/A /**
2401N/A * Unicode script "Inherited".
2401N/A */
2401N/A INHERITED,
2401N/A
2401N/A /**
2401N/A * Unicode script "Tagalog".
2401N/A */
2401N/A TAGALOG,
2401N/A
2401N/A /**
2401N/A * Unicode script "Hanunoo".
2401N/A */
2401N/A HANUNOO,
2401N/A
2401N/A /**
2401N/A * Unicode script "Buhid".
2401N/A */
2401N/A BUHID,
2401N/A
2401N/A /**
2401N/A * Unicode script "Tagbanwa".
2401N/A */
2401N/A TAGBANWA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Limbu".
2401N/A */
2401N/A LIMBU,
2401N/A
2401N/A /**
2401N/A * Unicode script "Tai_Le".
2401N/A */
2401N/A TAI_LE,
2401N/A
2401N/A /**
2401N/A * Unicode script "Linear_B".
2401N/A */
2401N/A LINEAR_B,
2401N/A
2401N/A /**
2401N/A * Unicode script "Ugaritic".
2401N/A */
2401N/A UGARITIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Shavian".
2401N/A */
2401N/A SHAVIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Osmanya".
2401N/A */
2401N/A OSMANYA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Cypriot".
2401N/A */
2401N/A CYPRIOT,
2401N/A
2401N/A /**
2401N/A * Unicode script "Braille".
2401N/A */
2401N/A BRAILLE,
2401N/A
2401N/A /**
2401N/A * Unicode script "Buginese".
2401N/A */
2401N/A BUGINESE,
2401N/A
2401N/A /**
2401N/A * Unicode script "Coptic".
2401N/A */
2401N/A COPTIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "New_Tai_Lue".
2401N/A */
2401N/A NEW_TAI_LUE,
2401N/A
2401N/A /**
2401N/A * Unicode script "Glagolitic".
2401N/A */
2401N/A GLAGOLITIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Tifinagh".
2401N/A */
2401N/A TIFINAGH,
2401N/A
2401N/A /**
2401N/A * Unicode script "Syloti_Nagri".
2401N/A */
2401N/A SYLOTI_NAGRI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Old_Persian".
2401N/A */
2401N/A OLD_PERSIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Kharoshthi".
2401N/A */
2401N/A KHAROSHTHI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Balinese".
2401N/A */
2401N/A BALINESE,
2401N/A
2401N/A /**
2401N/A * Unicode script "Cuneiform".
2401N/A */
2401N/A CUNEIFORM,
2401N/A
2401N/A /**
2401N/A * Unicode script "Phoenician".
2401N/A */
2401N/A PHOENICIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Phags_Pa".
2401N/A */
2401N/A PHAGS_PA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Nko".
2401N/A */
2401N/A NKO,
2401N/A
2401N/A /**
2401N/A * Unicode script "Sundanese".
2401N/A */
2401N/A SUNDANESE,
2401N/A
2401N/A /**
3081N/A * Unicode script "Batak".
3081N/A */
3081N/A BATAK,
3081N/A
3081N/A /**
2401N/A * Unicode script "Lepcha".
2401N/A */
2401N/A LEPCHA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Ol_Chiki".
2401N/A */
2401N/A OL_CHIKI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Vai".
2401N/A */
2401N/A VAI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Saurashtra".
2401N/A */
2401N/A SAURASHTRA,
2401N/A
2401N/A /**
2401N/A * Unicode script "Kayah_Li".
2401N/A */
2401N/A KAYAH_LI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Rejang".
2401N/A */
2401N/A REJANG,
2401N/A
2401N/A /**
2401N/A * Unicode script "Lycian".
2401N/A */
2401N/A LYCIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Carian".
2401N/A */
2401N/A CARIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Lydian".
2401N/A */
2401N/A LYDIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Cham".
2401N/A */
2401N/A CHAM,
2401N/A
2401N/A /**
2401N/A * Unicode script "Tai_Tham".
2401N/A */
2401N/A TAI_THAM,
2401N/A
2401N/A /**
2401N/A * Unicode script "Tai_Viet".
2401N/A */
2401N/A TAI_VIET,
2401N/A
2401N/A /**
2401N/A * Unicode script "Avestan".
2401N/A */
2401N/A AVESTAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Egyptian_Hieroglyphs".
2401N/A */
2401N/A EGYPTIAN_HIEROGLYPHS,
2401N/A
2401N/A /**
2401N/A * Unicode script "Samaritan".
2401N/A */
2401N/A SAMARITAN,
2401N/A
2401N/A /**
3081N/A * Unicode script "Mandaic".
3081N/A */
3081N/A MANDAIC,
3081N/A
3081N/A /**
2401N/A * Unicode script "Lisu".
2401N/A */
2401N/A LISU,
2401N/A
2401N/A /**
2401N/A * Unicode script "Bamum".
2401N/A */
2401N/A BAMUM,
2401N/A
2401N/A /**
2401N/A * Unicode script "Javanese".
2401N/A */
2401N/A JAVANESE,
2401N/A
2401N/A /**
2401N/A * Unicode script "Meetei_Mayek".
2401N/A */
2401N/A MEETEI_MAYEK,
2401N/A
2401N/A /**
2401N/A * Unicode script "Imperial_Aramaic".
2401N/A */
2401N/A IMPERIAL_ARAMAIC,
2401N/A
2401N/A /**
2401N/A * Unicode script "Old_South_Arabian".
2401N/A */
2401N/A OLD_SOUTH_ARABIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Inscriptional_Parthian".
2401N/A */
2401N/A INSCRIPTIONAL_PARTHIAN,
2401N/A
2401N/A /**
2401N/A * Unicode script "Inscriptional_Pahlavi".
2401N/A */
2401N/A INSCRIPTIONAL_PAHLAVI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Old_Turkic".
2401N/A */
2401N/A OLD_TURKIC,
2401N/A
2401N/A /**
3081N/A * Unicode script "Brahmi".
3081N/A */
3081N/A BRAHMI,
3081N/A
3081N/A /**
2401N/A * Unicode script "Kaithi".
2401N/A */
2401N/A KAITHI,
2401N/A
2401N/A /**
2401N/A * Unicode script "Unknown".
2401N/A */
2401N/A UNKNOWN;
2401N/A
2401N/A private static final int[] scriptStarts = {
2401N/A 0x0000, // 0000..0040; COMMON
2401N/A 0x0041, // 0041..005A; LATIN
2401N/A 0x005B, // 005B..0060; COMMON
2401N/A 0x0061, // 0061..007A; LATIN
2401N/A 0x007B, // 007B..00A9; COMMON
2401N/A 0x00AA, // 00AA..00AA; LATIN
2401N/A 0x00AB, // 00AB..00B9; COMMON
2401N/A 0x00BA, // 00BA..00BA; LATIN
2401N/A 0x00BB, // 00BB..00BF; COMMON
2401N/A 0x00C0, // 00C0..00D6; LATIN
2401N/A 0x00D7, // 00D7..00D7; COMMON
2401N/A 0x00D8, // 00D8..00F6; LATIN
2401N/A 0x00F7, // 00F7..00F7; COMMON
2401N/A 0x00F8, // 00F8..02B8; LATIN
2401N/A 0x02B9, // 02B9..02DF; COMMON
2401N/A 0x02E0, // 02E0..02E4; LATIN
3081N/A 0x02E5, // 02E5..02E9; COMMON
3081N/A 0x02EA, // 02EA..02EB; BOPOMOFO
3081N/A 0x02EC, // 02EC..02FF; COMMON
2401N/A 0x0300, // 0300..036F; INHERITED
2401N/A 0x0370, // 0370..0373; GREEK
2401N/A 0x0374, // 0374..0374; COMMON
2401N/A 0x0375, // 0375..037D; GREEK
2401N/A 0x037E, // 037E..0383; COMMON
2401N/A 0x0384, // 0384..0384; GREEK
2401N/A 0x0385, // 0385..0385; COMMON
2401N/A 0x0386, // 0386..0386; GREEK
2401N/A 0x0387, // 0387..0387; COMMON
2401N/A 0x0388, // 0388..03E1; GREEK
2401N/A 0x03E2, // 03E2..03EF; COPTIC
2401N/A 0x03F0, // 03F0..03FF; GREEK
2401N/A 0x0400, // 0400..0484; CYRILLIC
2401N/A 0x0485, // 0485..0486; INHERITED
2401N/A 0x0487, // 0487..0530; CYRILLIC
2401N/A 0x0531, // 0531..0588; ARMENIAN
2401N/A 0x0589, // 0589..0589; COMMON
2401N/A 0x058A, // 058A..0590; ARMENIAN
2401N/A 0x0591, // 0591..05FF; HEBREW
3081N/A 0x0600, // 0600..060B; ARABIC
2401N/A 0x060C, // 060C..060C; COMMON
2401N/A 0x060D, // 060D..061A; ARABIC
2401N/A 0x061B, // 061B..061D; COMMON
2401N/A 0x061E, // 061E..061E; ARABIC
3081N/A 0x061F, // 061F..061F; COMMON
3081N/A 0x0620, // 0620..063F; ARABIC
2401N/A 0x0640, // 0640..0640; COMMON
2401N/A 0x0641, // 0641..064A; ARABIC
2401N/A 0x064B, // 064B..0655; INHERITED
3081N/A 0x0656, // 0656..065E; ARABIC
3081N/A 0x065F, // 065F..065F; INHERITED
2401N/A 0x0660, // 0660..0669; COMMON
2401N/A 0x066A, // 066A..066F; ARABIC
2401N/A 0x0670, // 0670..0670; INHERITED
2401N/A 0x0671, // 0671..06DC; ARABIC
2401N/A 0x06DD, // 06DD..06DD; COMMON
2401N/A 0x06DE, // 06DE..06FF; ARABIC
2401N/A 0x0700, // 0700..074F; SYRIAC
2401N/A 0x0750, // 0750..077F; ARABIC
2401N/A 0x0780, // 0780..07BF; THAANA
2401N/A 0x07C0, // 07C0..07FF; NKO
3081N/A 0x0800, // 0800..083F; SAMARITAN
3081N/A 0x0840, // 0840..08FF; MANDAIC
2401N/A 0x0900, // 0900..0950; DEVANAGARI
2401N/A 0x0951, // 0951..0952; INHERITED
2401N/A 0x0953, // 0953..0963; DEVANAGARI
2401N/A 0x0964, // 0964..0965; COMMON
2401N/A 0x0966, // 0966..096F; DEVANAGARI
2401N/A 0x0970, // 0970..0970; COMMON
2401N/A 0x0971, // 0971..0980; DEVANAGARI
2401N/A 0x0981, // 0981..0A00; BENGALI
2401N/A 0x0A01, // 0A01..0A80; GURMUKHI
2401N/A 0x0A81, // 0A81..0B00; GUJARATI
2401N/A 0x0B01, // 0B01..0B81; ORIYA
2401N/A 0x0B82, // 0B82..0C00; TAMIL
2401N/A 0x0C01, // 0C01..0C81; TELUGU
2401N/A 0x0C82, // 0C82..0CF0; KANNADA
2401N/A 0x0D02, // 0D02..0D81; MALAYALAM
2401N/A 0x0D82, // 0D82..0E00; SINHALA
2401N/A 0x0E01, // 0E01..0E3E; THAI
2401N/A 0x0E3F, // 0E3F..0E3F; COMMON
2401N/A 0x0E40, // 0E40..0E80; THAI
2401N/A 0x0E81, // 0E81..0EFF; LAO
2401N/A 0x0F00, // 0F00..0FD4; TIBETAN
3081N/A 0x0FD5, // 0FD5..0FD8; COMMON
3081N/A 0x0FD9, // 0FD9..0FFF; TIBETAN
2401N/A 0x1000, // 1000..109F; MYANMAR
2401N/A 0x10A0, // 10A0..10FA; GEORGIAN
2401N/A 0x10FB, // 10FB..10FB; COMMON
2401N/A 0x10FC, // 10FC..10FF; GEORGIAN
2401N/A 0x1100, // 1100..11FF; HANGUL
2401N/A 0x1200, // 1200..139F; ETHIOPIC
2401N/A 0x13A0, // 13A0..13FF; CHEROKEE
2401N/A 0x1400, // 1400..167F; CANADIAN_ABORIGINAL
2401N/A 0x1680, // 1680..169F; OGHAM
2401N/A 0x16A0, // 16A0..16EA; RUNIC
2401N/A 0x16EB, // 16EB..16ED; COMMON
2401N/A 0x16EE, // 16EE..16FF; RUNIC
2401N/A 0x1700, // 1700..171F; TAGALOG
2401N/A 0x1720, // 1720..1734; HANUNOO
2401N/A 0x1735, // 1735..173F; COMMON
2401N/A 0x1740, // 1740..175F; BUHID
2401N/A 0x1760, // 1760..177F; TAGBANWA
2401N/A 0x1780, // 1780..17FF; KHMER
2401N/A 0x1800, // 1800..1801; MONGOLIAN
2401N/A 0x1802, // 1802..1803; COMMON
2401N/A 0x1804, // 1804..1804; MONGOLIAN
2401N/A 0x1805, // 1805..1805; COMMON
2401N/A 0x1806, // 1806..18AF; MONGOLIAN
2401N/A 0x18B0, // 18B0..18FF; CANADIAN_ABORIGINAL
2401N/A 0x1900, // 1900..194F; LIMBU
2401N/A 0x1950, // 1950..197F; TAI_LE
2401N/A 0x1980, // 1980..19DF; NEW_TAI_LUE
2401N/A 0x19E0, // 19E0..19FF; KHMER
2401N/A 0x1A00, // 1A00..1A1F; BUGINESE
2401N/A 0x1A20, // 1A20..1AFF; TAI_THAM
2401N/A 0x1B00, // 1B00..1B7F; BALINESE
3081N/A 0x1B80, // 1B80..1BBF; SUNDANESE
3081N/A 0x1BC0, // 1BC0..1BFF; BATAK
2401N/A 0x1C00, // 1C00..1C4F; LEPCHA
2401N/A 0x1C50, // 1C50..1CCF; OL_CHIKI
2401N/A 0x1CD0, // 1CD0..1CD2; INHERITED
2401N/A 0x1CD3, // 1CD3..1CD3; COMMON
2401N/A 0x1CD4, // 1CD4..1CE0; INHERITED
2401N/A 0x1CE1, // 1CE1..1CE1; COMMON
2401N/A 0x1CE2, // 1CE2..1CE8; INHERITED
2401N/A 0x1CE9, // 1CE9..1CEC; COMMON
2401N/A 0x1CED, // 1CED..1CED; INHERITED
2401N/A 0x1CEE, // 1CEE..1CFF; COMMON
2401N/A 0x1D00, // 1D00..1D25; LATIN
2401N/A 0x1D26, // 1D26..1D2A; GREEK
2401N/A 0x1D2B, // 1D2B..1D2B; CYRILLIC
2401N/A 0x1D2C, // 1D2C..1D5C; LATIN
2401N/A 0x1D5D, // 1D5D..1D61; GREEK
2401N/A 0x1D62, // 1D62..1D65; LATIN
2401N/A 0x1D66, // 1D66..1D6A; GREEK
2401N/A 0x1D6B, // 1D6B..1D77; LATIN
2401N/A 0x1D78, // 1D78..1D78; CYRILLIC
2401N/A 0x1D79, // 1D79..1DBE; LATIN
2401N/A 0x1DBF, // 1DBF..1DBF; GREEK
2401N/A 0x1DC0, // 1DC0..1DFF; INHERITED
2401N/A 0x1E00, // 1E00..1EFF; LATIN
2401N/A 0x1F00, // 1F00..1FFF; GREEK
2401N/A 0x2000, // 2000..200B; COMMON
2401N/A 0x200C, // 200C..200D; INHERITED
2401N/A 0x200E, // 200E..2070; COMMON
2401N/A 0x2071, // 2071..2073; LATIN
2401N/A 0x2074, // 2074..207E; COMMON
2401N/A 0x207F, // 207F..207F; LATIN
2401N/A 0x2080, // 2080..208F; COMMON
2401N/A 0x2090, // 2090..209F; LATIN
2401N/A 0x20A0, // 20A0..20CF; COMMON
2401N/A 0x20D0, // 20D0..20FF; INHERITED
2401N/A 0x2100, // 2100..2125; COMMON
2401N/A 0x2126, // 2126..2126; GREEK
2401N/A 0x2127, // 2127..2129; COMMON
2401N/A 0x212A, // 212A..212B; LATIN
2401N/A 0x212C, // 212C..2131; COMMON
2401N/A 0x2132, // 2132..2132; LATIN
2401N/A 0x2133, // 2133..214D; COMMON
2401N/A 0x214E, // 214E..214E; LATIN
2401N/A 0x214F, // 214F..215F; COMMON
2401N/A 0x2160, // 2160..2188; LATIN
2401N/A 0x2189, // 2189..27FF; COMMON
2401N/A 0x2800, // 2800..28FF; BRAILLE
2401N/A 0x2900, // 2900..2BFF; COMMON
2401N/A 0x2C00, // 2C00..2C5F; GLAGOLITIC
2401N/A 0x2C60, // 2C60..2C7F; LATIN
2401N/A 0x2C80, // 2C80..2CFF; COPTIC
2401N/A 0x2D00, // 2D00..2D2F; GEORGIAN
2401N/A 0x2D30, // 2D30..2D7F; TIFINAGH
2401N/A 0x2D80, // 2D80..2DDF; ETHIOPIC
2401N/A 0x2DE0, // 2DE0..2DFF; CYRILLIC
2401N/A 0x2E00, // 2E00..2E7F; COMMON
2401N/A 0x2E80, // 2E80..2FEF; HAN
2401N/A 0x2FF0, // 2FF0..3004; COMMON
2401N/A 0x3005, // 3005..3005; HAN
2401N/A 0x3006, // 3006..3006; COMMON
2401N/A 0x3007, // 3007..3007; HAN
2401N/A 0x3008, // 3008..3020; COMMON
2401N/A 0x3021, // 3021..3029; HAN
3081N/A 0x302A, // 302A..302D; INHERITED
3081N/A 0x302E, // 302E..302F; HANGUL
2401N/A 0x3030, // 3030..3037; COMMON
2401N/A 0x3038, // 3038..303B; HAN
2401N/A 0x303C, // 303C..3040; COMMON
2401N/A 0x3041, // 3041..3098; HIRAGANA
2401N/A 0x3099, // 3099..309A; INHERITED
2401N/A 0x309B, // 309B..309C; COMMON
2401N/A 0x309D, // 309D..309F; HIRAGANA
2401N/A 0x30A0, // 30A0..30A0; COMMON
2401N/A 0x30A1, // 30A1..30FA; KATAKANA
2401N/A 0x30FB, // 30FB..30FC; COMMON
2401N/A 0x30FD, // 30FD..3104; KATAKANA
2401N/A 0x3105, // 3105..3130; BOPOMOFO
2401N/A 0x3131, // 3131..318F; HANGUL
2401N/A 0x3190, // 3190..319F; COMMON
2401N/A 0x31A0, // 31A0..31BF; BOPOMOFO
2401N/A 0x31C0, // 31C0..31EF; COMMON
2401N/A 0x31F0, // 31F0..31FF; KATAKANA
2401N/A 0x3200, // 3200..321F; HANGUL
2401N/A 0x3220, // 3220..325F; COMMON
2401N/A 0x3260, // 3260..327E; HANGUL
2401N/A 0x327F, // 327F..32CF; COMMON
2401N/A 0x32D0, // 32D0..3357; KATAKANA
2401N/A 0x3358, // 3358..33FF; COMMON
2401N/A 0x3400, // 3400..4DBF; HAN
2401N/A 0x4DC0, // 4DC0..4DFF; COMMON
2401N/A 0x4E00, // 4E00..9FFF; HAN
2401N/A 0xA000, // A000..A4CF; YI
2401N/A 0xA4D0, // A4D0..A4FF; LISU
2401N/A 0xA500, // A500..A63F; VAI
2401N/A 0xA640, // A640..A69F; CYRILLIC
2401N/A 0xA6A0, // A6A0..A6FF; BAMUM
2401N/A 0xA700, // A700..A721; COMMON
2401N/A 0xA722, // A722..A787; LATIN
2401N/A 0xA788, // A788..A78A; COMMON
2401N/A 0xA78B, // A78B..A7FF; LATIN
2401N/A 0xA800, // A800..A82F; SYLOTI_NAGRI
2401N/A 0xA830, // A830..A83F; COMMON
2401N/A 0xA840, // A840..A87F; PHAGS_PA
2401N/A 0xA880, // A880..A8DF; SAURASHTRA
2401N/A 0xA8E0, // A8E0..A8FF; DEVANAGARI
2401N/A 0xA900, // A900..A92F; KAYAH_LI
2401N/A 0xA930, // A930..A95F; REJANG
2401N/A 0xA960, // A960..A97F; HANGUL
2401N/A 0xA980, // A980..A9FF; JAVANESE
2401N/A 0xAA00, // AA00..AA5F; CHAM
2401N/A 0xAA60, // AA60..AA7F; MYANMAR
3081N/A 0xAA80, // AA80..AB00; TAI_VIET
3081N/A 0xAB01, // AB01..ABBF; ETHIOPIC
2401N/A 0xABC0, // ABC0..ABFF; MEETEI_MAYEK
2401N/A 0xAC00, // AC00..D7FB; HANGUL
2401N/A 0xD7FC, // D7FC..F8FF; UNKNOWN
2401N/A 0xF900, // F900..FAFF; HAN
2401N/A 0xFB00, // FB00..FB12; LATIN
2401N/A 0xFB13, // FB13..FB1C; ARMENIAN
2401N/A 0xFB1D, // FB1D..FB4F; HEBREW
2401N/A 0xFB50, // FB50..FD3D; ARABIC
2401N/A 0xFD3E, // FD3E..FD4F; COMMON
2401N/A 0xFD50, // FD50..FDFC; ARABIC
2401N/A 0xFDFD, // FDFD..FDFF; COMMON
2401N/A 0xFE00, // FE00..FE0F; INHERITED
2401N/A 0xFE10, // FE10..FE1F; COMMON
2401N/A 0xFE20, // FE20..FE2F; INHERITED
2401N/A 0xFE30, // FE30..FE6F; COMMON
2401N/A 0xFE70, // FE70..FEFE; ARABIC
2401N/A 0xFEFF, // FEFF..FF20; COMMON
2401N/A 0xFF21, // FF21..FF3A; LATIN
2401N/A 0xFF3B, // FF3B..FF40; COMMON
2401N/A 0xFF41, // FF41..FF5A; LATIN
2401N/A 0xFF5B, // FF5B..FF65; COMMON
2401N/A 0xFF66, // FF66..FF6F; KATAKANA
2401N/A 0xFF70, // FF70..FF70; COMMON
2401N/A 0xFF71, // FF71..FF9D; KATAKANA
2401N/A 0xFF9E, // FF9E..FF9F; COMMON
2401N/A 0xFFA0, // FFA0..FFDF; HANGUL
2401N/A 0xFFE0, // FFE0..FFFF; COMMON
2401N/A 0x10000, // 10000..100FF; LINEAR_B
2401N/A 0x10100, // 10100..1013F; COMMON
2401N/A 0x10140, // 10140..1018F; GREEK
2401N/A 0x10190, // 10190..101FC; COMMON
2401N/A 0x101FD, // 101FD..1027F; INHERITED
2401N/A 0x10280, // 10280..1029F; LYCIAN
2401N/A 0x102A0, // 102A0..102FF; CARIAN
2401N/A 0x10300, // 10300..1032F; OLD_ITALIC
2401N/A 0x10330, // 10330..1037F; GOTHIC
2401N/A 0x10380, // 10380..1039F; UGARITIC
2401N/A 0x103A0, // 103A0..103FF; OLD_PERSIAN
2401N/A 0x10400, // 10400..1044F; DESERET
2401N/A 0x10450, // 10450..1047F; SHAVIAN
2401N/A 0x10480, // 10480..107FF; OSMANYA
2401N/A 0x10800, // 10800..1083F; CYPRIOT
2401N/A 0x10840, // 10840..108FF; IMPERIAL_ARAMAIC
2401N/A 0x10900, // 10900..1091F; PHOENICIAN
2401N/A 0x10920, // 10920..109FF; LYDIAN
2401N/A 0x10A00, // 10A00..10A5F; KHAROSHTHI
2401N/A 0x10A60, // 10A60..10AFF; OLD_SOUTH_ARABIAN
2401N/A 0x10B00, // 10B00..10B3F; AVESTAN
2401N/A 0x10B40, // 10B40..10B5F; INSCRIPTIONAL_PARTHIAN
2401N/A 0x10B60, // 10B60..10BFF; INSCRIPTIONAL_PAHLAVI
2401N/A 0x10C00, // 10C00..10E5F; OLD_TURKIC
3081N/A 0x10E60, // 10E60..10FFF; ARABIC
3081N/A 0x11000, // 11000..1107F; BRAHMI
2401N/A 0x11080, // 11080..11FFF; KAITHI
2401N/A 0x12000, // 12000..12FFF; CUNEIFORM
3081N/A 0x13000, // 13000..167FF; EGYPTIAN_HIEROGLYPHS
3081N/A 0x16800, // 16800..16A38; BAMUM
3081N/A 0x1B000, // 1B000..1B000; KATAKANA
3081N/A 0x1B001, // 1B001..1CFFF; HIRAGANA
2401N/A 0x1D000, // 1D000..1D166; COMMON
2401N/A 0x1D167, // 1D167..1D169; INHERITED
2401N/A 0x1D16A, // 1D16A..1D17A; COMMON
2401N/A 0x1D17B, // 1D17B..1D182; INHERITED
2401N/A 0x1D183, // 1D183..1D184; COMMON
2401N/A 0x1D185, // 1D185..1D18B; INHERITED
2401N/A 0x1D18C, // 1D18C..1D1A9; COMMON
2401N/A 0x1D1AA, // 1D1AA..1D1AD; INHERITED
2401N/A 0x1D1AE, // 1D1AE..1D1FF; COMMON
2401N/A 0x1D200, // 1D200..1D2FF; GREEK
2401N/A 0x1D300, // 1D300..1F1FF; COMMON
3081N/A 0x1F200, // 1F200..1F200; HIRAGANA
3081N/A 0x1F201, // 1F210..1FFFF; COMMON
2401N/A 0x20000, // 20000..E0000; HAN
2401N/A 0xE0001, // E0001..E00FF; COMMON
2401N/A 0xE0100, // E0100..E01EF; INHERITED
2401N/A 0xE01F0 // E01F0..10FFFF; UNKNOWN
2401N/A
2401N/A };
2401N/A
2401N/A private static final UnicodeScript[] scripts = {
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
3081N/A BOPOMOFO,
3081N/A COMMON,
2401N/A INHERITED,
2401N/A GREEK,
2401N/A COMMON,
2401N/A GREEK,
2401N/A COMMON,
2401N/A GREEK,
2401N/A COMMON,
2401N/A GREEK,
2401N/A COMMON,
2401N/A GREEK,
2401N/A COPTIC,
2401N/A GREEK,
2401N/A CYRILLIC,
2401N/A INHERITED,
2401N/A CYRILLIC,
2401N/A ARMENIAN,
2401N/A COMMON,
2401N/A ARMENIAN,
2401N/A HEBREW,
2401N/A ARABIC,
2401N/A COMMON,
2401N/A ARABIC,
2401N/A COMMON,
2401N/A ARABIC,
2401N/A COMMON,
2401N/A ARABIC,
2401N/A COMMON,
2401N/A ARABIC,
2401N/A INHERITED,
2401N/A ARABIC,
3081N/A INHERITED,
2401N/A COMMON,
2401N/A ARABIC,
2401N/A INHERITED,
2401N/A ARABIC,
2401N/A COMMON,
2401N/A ARABIC,
2401N/A SYRIAC,
2401N/A ARABIC,
2401N/A THAANA,
2401N/A NKO,
2401N/A SAMARITAN,
3081N/A MANDAIC,
2401N/A DEVANAGARI,
2401N/A INHERITED,
2401N/A DEVANAGARI,
2401N/A COMMON,
2401N/A DEVANAGARI,
2401N/A COMMON,
2401N/A DEVANAGARI,
2401N/A BENGALI,
2401N/A GURMUKHI,
2401N/A GUJARATI,
2401N/A ORIYA,
2401N/A TAMIL,
2401N/A TELUGU,
2401N/A KANNADA,
2401N/A MALAYALAM,
2401N/A SINHALA,
2401N/A THAI,
2401N/A COMMON,
2401N/A THAI,
2401N/A LAO,
2401N/A TIBETAN,
2401N/A COMMON,
3081N/A TIBETAN,
2401N/A MYANMAR,
2401N/A GEORGIAN,
2401N/A COMMON,
2401N/A GEORGIAN,
2401N/A HANGUL,
2401N/A ETHIOPIC,
2401N/A CHEROKEE,
2401N/A CANADIAN_ABORIGINAL,
2401N/A OGHAM,
2401N/A RUNIC,
2401N/A COMMON,
2401N/A RUNIC,
2401N/A TAGALOG,
2401N/A HANUNOO,
2401N/A COMMON,
2401N/A BUHID,
2401N/A TAGBANWA,
2401N/A KHMER,
2401N/A MONGOLIAN,
2401N/A COMMON,
2401N/A MONGOLIAN,
2401N/A COMMON,
2401N/A MONGOLIAN,
2401N/A CANADIAN_ABORIGINAL,
2401N/A LIMBU,
2401N/A TAI_LE,
2401N/A NEW_TAI_LUE,
2401N/A KHMER,
2401N/A BUGINESE,
2401N/A TAI_THAM,
2401N/A BALINESE,
2401N/A SUNDANESE,
3081N/A BATAK,
2401N/A LEPCHA,
2401N/A OL_CHIKI,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A LATIN,
2401N/A GREEK,
2401N/A CYRILLIC,
2401N/A LATIN,
2401N/A GREEK,
2401N/A LATIN,
2401N/A GREEK,
2401N/A LATIN,
2401N/A CYRILLIC,
2401N/A LATIN,
2401N/A GREEK,
2401N/A INHERITED,
2401N/A LATIN,
2401N/A GREEK,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A GREEK,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A BRAILLE,
2401N/A COMMON,
2401N/A GLAGOLITIC,
2401N/A LATIN,
2401N/A COPTIC,
2401N/A GEORGIAN,
2401N/A TIFINAGH,
2401N/A ETHIOPIC,
2401N/A CYRILLIC,
2401N/A COMMON,
2401N/A HAN,
2401N/A COMMON,
2401N/A HAN,
2401N/A COMMON,
2401N/A HAN,
2401N/A COMMON,
2401N/A HAN,
2401N/A INHERITED,
3081N/A HANGUL,
2401N/A COMMON,
2401N/A HAN,
2401N/A COMMON,
2401N/A HIRAGANA,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A HIRAGANA,
2401N/A COMMON,
2401N/A KATAKANA,
2401N/A COMMON,
2401N/A KATAKANA,
2401N/A BOPOMOFO,
2401N/A HANGUL,
2401N/A COMMON,
2401N/A BOPOMOFO,
2401N/A COMMON,
2401N/A KATAKANA,
2401N/A HANGUL,
2401N/A COMMON,
2401N/A HANGUL,
2401N/A COMMON,
2401N/A KATAKANA,
2401N/A COMMON,
2401N/A HAN,
2401N/A COMMON,
2401N/A HAN,
2401N/A YI,
2401N/A LISU,
2401N/A VAI,
2401N/A CYRILLIC,
2401N/A BAMUM,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A SYLOTI_NAGRI,
2401N/A COMMON,
2401N/A PHAGS_PA,
2401N/A SAURASHTRA,
2401N/A DEVANAGARI,
2401N/A KAYAH_LI,
2401N/A REJANG,
2401N/A HANGUL,
2401N/A JAVANESE,
2401N/A CHAM,
2401N/A MYANMAR,
2401N/A TAI_VIET,
3081N/A ETHIOPIC,
2401N/A MEETEI_MAYEK,
2401N/A HANGUL,
2401N/A UNKNOWN,
2401N/A HAN,
2401N/A LATIN,
2401N/A ARMENIAN,
2401N/A HEBREW,
2401N/A ARABIC,
2401N/A COMMON,
2401N/A ARABIC,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A ARABIC,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A LATIN,
2401N/A COMMON,
2401N/A KATAKANA,
2401N/A COMMON,
2401N/A KATAKANA,
2401N/A COMMON,
2401N/A HANGUL,
2401N/A COMMON,
2401N/A LINEAR_B,
2401N/A COMMON,
2401N/A GREEK,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A LYCIAN,
2401N/A CARIAN,
2401N/A OLD_ITALIC,
2401N/A GOTHIC,
2401N/A UGARITIC,
2401N/A OLD_PERSIAN,
2401N/A DESERET,
2401N/A SHAVIAN,
2401N/A OSMANYA,
2401N/A CYPRIOT,
2401N/A IMPERIAL_ARAMAIC,
2401N/A PHOENICIAN,
2401N/A LYDIAN,
2401N/A KHAROSHTHI,
2401N/A OLD_SOUTH_ARABIAN,
2401N/A AVESTAN,
2401N/A INSCRIPTIONAL_PARTHIAN,
2401N/A INSCRIPTIONAL_PAHLAVI,
2401N/A OLD_TURKIC,
2401N/A ARABIC,
3081N/A BRAHMI,
2401N/A KAITHI,
2401N/A CUNEIFORM,
2401N/A EGYPTIAN_HIEROGLYPHS,
3081N/A BAMUM,
3081N/A KATAKANA,
3081N/A HIRAGANA,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A COMMON,
2401N/A GREEK,
2401N/A COMMON,
2401N/A HIRAGANA,
2401N/A COMMON,
2401N/A HAN,
2401N/A COMMON,
2401N/A INHERITED,
2401N/A UNKNOWN
2401N/A };
2401N/A
2401N/A private static HashMap<String, Character.UnicodeScript> aliases;
2401N/A static {
3323N/A aliases = new HashMap<>(128);
2401N/A aliases.put("ARAB", ARABIC);
2401N/A aliases.put("ARMI", IMPERIAL_ARAMAIC);
2401N/A aliases.put("ARMN", ARMENIAN);
2401N/A aliases.put("AVST", AVESTAN);
2401N/A aliases.put("BALI", BALINESE);
2401N/A aliases.put("BAMU", BAMUM);
3992N/A aliases.put("BATK", BATAK);
2401N/A aliases.put("BENG", BENGALI);
2401N/A aliases.put("BOPO", BOPOMOFO);
2401N/A aliases.put("BRAI", BRAILLE);
3992N/A aliases.put("BRAH", BRAHMI);
2401N/A aliases.put("BUGI", BUGINESE);
2401N/A aliases.put("BUHD", BUHID);
2401N/A aliases.put("CANS", CANADIAN_ABORIGINAL);
2401N/A aliases.put("CARI", CARIAN);
2401N/A aliases.put("CHAM", CHAM);
2401N/A aliases.put("CHER", CHEROKEE);
2401N/A aliases.put("COPT", COPTIC);
2401N/A aliases.put("CPRT", CYPRIOT);
2401N/A aliases.put("CYRL", CYRILLIC);
2401N/A aliases.put("DEVA", DEVANAGARI);
2401N/A aliases.put("DSRT", DESERET);
2401N/A aliases.put("EGYP", EGYPTIAN_HIEROGLYPHS);
2401N/A aliases.put("ETHI", ETHIOPIC);
2401N/A aliases.put("GEOR", GEORGIAN);
2401N/A aliases.put("GLAG", GLAGOLITIC);
2401N/A aliases.put("GOTH", GOTHIC);
2401N/A aliases.put("GREK", GREEK);
2401N/A aliases.put("GUJR", GUJARATI);
2401N/A aliases.put("GURU", GURMUKHI);
2401N/A aliases.put("HANG", HANGUL);
2401N/A aliases.put("HANI", HAN);
2401N/A aliases.put("HANO", HANUNOO);
2401N/A aliases.put("HEBR", HEBREW);
2401N/A aliases.put("HIRA", HIRAGANA);
2401N/A // it appears we don't have the KATAKANA_OR_HIRAGANA
2401N/A //aliases.put("HRKT", KATAKANA_OR_HIRAGANA);
2401N/A aliases.put("ITAL", OLD_ITALIC);
2401N/A aliases.put("JAVA", JAVANESE);
2401N/A aliases.put("KALI", KAYAH_LI);
2401N/A aliases.put("KANA", KATAKANA);
2401N/A aliases.put("KHAR", KHAROSHTHI);
2401N/A aliases.put("KHMR", KHMER);
2401N/A aliases.put("KNDA", KANNADA);
2401N/A aliases.put("KTHI", KAITHI);
2401N/A aliases.put("LANA", TAI_THAM);
2401N/A aliases.put("LAOO", LAO);
2401N/A aliases.put("LATN", LATIN);
2401N/A aliases.put("LEPC", LEPCHA);
2401N/A aliases.put("LIMB", LIMBU);
2401N/A aliases.put("LINB", LINEAR_B);
2401N/A aliases.put("LISU", LISU);
2401N/A aliases.put("LYCI", LYCIAN);
2401N/A aliases.put("LYDI", LYDIAN);
3992N/A aliases.put("MAND", MANDAIC);
2401N/A aliases.put("MLYM", MALAYALAM);
2401N/A aliases.put("MONG", MONGOLIAN);
2401N/A aliases.put("MTEI", MEETEI_MAYEK);
2401N/A aliases.put("MYMR", MYANMAR);
2401N/A aliases.put("NKOO", NKO);
2401N/A aliases.put("OGAM", OGHAM);
2401N/A aliases.put("OLCK", OL_CHIKI);
2401N/A aliases.put("ORKH", OLD_TURKIC);
2401N/A aliases.put("ORYA", ORIYA);
2401N/A aliases.put("OSMA", OSMANYA);
2401N/A aliases.put("PHAG", PHAGS_PA);
2401N/A aliases.put("PHLI", INSCRIPTIONAL_PAHLAVI);
2401N/A aliases.put("PHNX", PHOENICIAN);
2401N/A aliases.put("PRTI", INSCRIPTIONAL_PARTHIAN);
2401N/A aliases.put("RJNG", REJANG);
2401N/A aliases.put("RUNR", RUNIC);
2401N/A aliases.put("SAMR", SAMARITAN);
2401N/A aliases.put("SARB", OLD_SOUTH_ARABIAN);
2401N/A aliases.put("SAUR", SAURASHTRA);
2401N/A aliases.put("SHAW", SHAVIAN);
2401N/A aliases.put("SINH", SINHALA);
2401N/A aliases.put("SUND", SUNDANESE);
2401N/A aliases.put("SYLO", SYLOTI_NAGRI);
2401N/A aliases.put("SYRC", SYRIAC);
2401N/A aliases.put("TAGB", TAGBANWA);
2401N/A aliases.put("TALE", TAI_LE);
2401N/A aliases.put("TALU", NEW_TAI_LUE);
2401N/A aliases.put("TAML", TAMIL);
2401N/A aliases.put("TAVT", TAI_VIET);
2401N/A aliases.put("TELU", TELUGU);
2401N/A aliases.put("TFNG", TIFINAGH);
2401N/A aliases.put("TGLG", TAGALOG);
2401N/A aliases.put("THAA", THAANA);
2401N/A aliases.put("THAI", THAI);
2401N/A aliases.put("TIBT", TIBETAN);
2401N/A aliases.put("UGAR", UGARITIC);
2401N/A aliases.put("VAII", VAI);
2401N/A aliases.put("XPEO", OLD_PERSIAN);
2401N/A aliases.put("XSUX", CUNEIFORM);
2401N/A aliases.put("YIII", YI);
2401N/A aliases.put("ZINH", INHERITED);
2401N/A aliases.put("ZYYY", COMMON);
2401N/A aliases.put("ZZZZ", UNKNOWN);
2401N/A }
2401N/A
2401N/A /**
2401N/A * Returns the enum constant representing the Unicode script of which
2401N/A * the given character (Unicode code point) is assigned to.
2401N/A *
2401N/A * @param codePoint the character (Unicode code point) in question.
3827N/A * @return The {@code UnicodeScript} constant representing the
2401N/A * Unicode script of which this character is assigned to.
2401N/A *
2401N/A * @exception IllegalArgumentException if the specified
3827N/A * {@code codePoint} is an invalid Unicode code point.
2401N/A * @see Character#isValidCodePoint(int)
2401N/A *
2401N/A */
2401N/A public static UnicodeScript of(int codePoint) {
2401N/A if (!isValidCodePoint(codePoint))
2401N/A throw new IllegalArgumentException();
2401N/A int type = getType(codePoint);
2401N/A // leave SURROGATE and PRIVATE_USE for table lookup
2401N/A if (type == UNASSIGNED)
2401N/A return UNKNOWN;
2401N/A int index = Arrays.binarySearch(scriptStarts, codePoint);
2401N/A if (index < 0)
2401N/A index = -index - 2;
2401N/A return scripts[index];
2401N/A }
2401N/A
2401N/A /**
2401N/A * Returns the UnicodeScript constant with the given Unicode script
2401N/A * name or the script name alias. Script names and their aliases are
2401N/A * determined by The Unicode Standard. The files Scripts&lt;version&gt;.txt
2401N/A * and PropertyValueAliases&lt;version&gt;.txt define script names
2401N/A * and the script name aliases for a particular version of the
2401N/A * standard. The {@link Character} class specifies the version of
2401N/A * the standard that it supports.
2401N/A * <p>
2401N/A * Character case is ignored for all of the valid script names.
2401N/A * The en_US locale's case mapping rules are used to provide
2401N/A * case-insensitive string comparisons for script name validation.
2401N/A * <p>
2401N/A *
3827N/A * @param scriptName A {@code UnicodeScript} name.
3827N/A * @return The {@code UnicodeScript} constant identified
3827N/A * by {@code scriptName}
3827N/A * @throws IllegalArgumentException if {@code scriptName} is an
2401N/A * invalid name
3827N/A * @throws NullPointerException if {@code scriptName} is null
2401N/A */
2401N/A public static final UnicodeScript forName(String scriptName) {
2401N/A scriptName = scriptName.toUpperCase(Locale.ENGLISH);
2401N/A //.replace(' ', '_'));
2401N/A UnicodeScript sc = aliases.get(scriptName);
2401N/A if (sc != null)
2401N/A return sc;
2401N/A return valueOf(scriptName);
2401N/A }
2401N/A }
2401N/A
2401N/A /**
3827N/A * The value of the {@code Character}.
0N/A *
0N/A * @serial
0N/A */
0N/A private final char value;
0N/A
0N/A /** use serialVersionUID from JDK 1.0.2 for interoperability */
0N/A private static final long serialVersionUID = 3786198910865385080L;
0N/A
0N/A /**
3827N/A * Constructs a newly allocated {@code Character} object that
3827N/A * represents the specified {@code char} value.
0N/A *
0N/A * @param value the value to be represented by the
3827N/A * {@code Character} object.
0N/A */
0N/A public Character(char value) {
0N/A this.value = value;
0N/A }
0N/A
0N/A private static class CharacterCache {
0N/A private CharacterCache(){}
0N/A
0N/A static final Character cache[] = new Character[127 + 1];
0N/A
0N/A static {
2566N/A for (int i = 0; i < cache.length; i++)
0N/A cache[i] = new Character((char)i);
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * Returns a <tt>Character</tt> instance representing the specified
0N/A * <tt>char</tt> value.
0N/A * If a new <tt>Character</tt> instance is not required, this method
0N/A * should generally be used in preference to the constructor
0N/A * {@link #Character(char)}, as this method is likely to yield
0N/A * significantly better space and time performance by caching
0N/A * frequently requested values.
0N/A *
1607N/A * This method will always cache values in the range {@code
3827N/A * '\u005Cu0000'} to {@code '\u005Cu007F'}, inclusive, and may
1607N/A * cache other values outside of this range.
1390N/A *
0N/A * @param c a char value.
0N/A * @return a <tt>Character</tt> instance representing <tt>c</tt>.
0N/A * @since 1.5
0N/A */
0N/A public static Character valueOf(char c) {
2566N/A if (c <= 127) { // must cache
0N/A return CharacterCache.cache[(int)c];
0N/A }
0N/A return new Character(c);
0N/A }
0N/A
0N/A /**
3827N/A * Returns the value of this {@code Character} object.
3827N/A * @return the primitive {@code char} value represented by
0N/A * this object.
0N/A */
0N/A public char charValue() {
0N/A return value;
0N/A }
0N/A
0N/A /**
1700N/A * Returns a hash code for this {@code Character}; equal to the result
1700N/A * of invoking {@code charValue()}.
1700N/A *
1700N/A * @return a hash code value for this {@code Character}
0N/A */
0N/A public int hashCode() {
0N/A return (int)value;
0N/A }
0N/A
0N/A /**
0N/A * Compares this object against the specified object.
3827N/A * The result is {@code true} if and only if the argument is not
3827N/A * {@code null} and is a {@code Character} object that
3827N/A * represents the same {@code char} value as this object.
0N/A *
0N/A * @param obj the object to compare with.
3827N/A * @return {@code true} if the objects are the same;
3827N/A * {@code false} otherwise.
0N/A */
0N/A public boolean equals(Object obj) {
0N/A if (obj instanceof Character) {
0N/A return value == ((Character)obj).charValue();
0N/A }
0N/A return false;
0N/A }
0N/A
0N/A /**
3827N/A * Returns a {@code String} object representing this
3827N/A * {@code Character}'s value. The result is a string of
0N/A * length 1 whose sole component is the primitive
3827N/A * {@code char} value represented by this
3827N/A * {@code Character} object.
0N/A *
0N/A * @return a string representation of this object.
0N/A */
0N/A public String toString() {
0N/A char buf[] = {value};
0N/A return String.valueOf(buf);
0N/A }
0N/A
0N/A /**
3827N/A * Returns a {@code String} object representing the
3827N/A * specified {@code char}. The result is a string of length
3827N/A * 1 consisting solely of the specified {@code char}.
3827N/A *
3827N/A * @param c the {@code char} to be converted
3827N/A * @return the string representation of the specified {@code char}
0N/A * @since 1.4
0N/A */
0N/A public static String toString(char c) {
0N/A return String.valueOf(c);
0N/A }
0N/A
0N/A /**
1602N/A * Determines whether the specified code point is a valid
1602N/A * <a href="http://www.unicode.org/glossary/#code_point">
1602N/A * Unicode code point value</a>.
0N/A *
0N/A * @param codePoint the Unicode code point to be tested
1602N/A * @return {@code true} if the specified code point value is between
1602N/A * {@link #MIN_CODE_POINT} and
1602N/A * {@link #MAX_CODE_POINT} inclusive;
1602N/A * {@code false} otherwise.
0N/A * @since 1.5
0N/A */
0N/A public static boolean isValidCodePoint(int codePoint) {
2561N/A // Optimized form of:
2561N/A // codePoint >= MIN_CODE_POINT && codePoint <= MAX_CODE_POINT
2561N/A int plane = codePoint >>> 16;
2561N/A return plane < ((MAX_CODE_POINT + 1) >>> 16);
0N/A }
0N/A
0N/A /**
0N/A * Determines whether the specified character (Unicode code point)
2562N/A * is in the <a href="#BMP">Basic Multilingual Plane (BMP)</a>.
2562N/A * Such code points can be represented using a single {@code char}.
2562N/A *
2562N/A * @param codePoint the character (Unicode code point) to be tested
2562N/A * @return {@code true} if the specified code point is between
2562N/A * {@link #MIN_VALUE} and {@link #MAX_VALUE} inclusive;
2562N/A * {@code false} otherwise.
2562N/A * @since 1.7
2562N/A */
2562N/A public static boolean isBmpCodePoint(int codePoint) {
2562N/A return codePoint >>> 16 == 0;
2562N/A // Optimized form of:
2562N/A // codePoint >= MIN_VALUE && codePoint <= MAX_VALUE
2562N/A // We consistently use logical shift (>>>) to facilitate
2562N/A // additional runtime optimizations.
2562N/A }
2562N/A
2562N/A /**
2562N/A * Determines whether the specified character (Unicode code point)
1602N/A * is in the <a href="#supplementary">supplementary character</a> range.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested
1602N/A * @return {@code true} if the specified code point is between
1602N/A * {@link #MIN_SUPPLEMENTARY_CODE_POINT} and
1602N/A * {@link #MAX_CODE_POINT} inclusive;
1602N/A * {@code false} otherwise.
0N/A * @since 1.5
0N/A */
0N/A public static boolean isSupplementaryCodePoint(int codePoint) {
0N/A return codePoint >= MIN_SUPPLEMENTARY_CODE_POINT
2561N/A && codePoint < MAX_CODE_POINT + 1;
0N/A }
0N/A
0N/A /**
1602N/A * Determines if the given {@code char} value is a
1602N/A * <a href="http://www.unicode.org/glossary/#high_surrogate_code_unit">
1602N/A * Unicode high-surrogate code unit</a>
1602N/A * (also known as <i>leading-surrogate code unit</i>).
0N/A *
1602N/A * <p>Such values do not represent characters by themselves,
1602N/A * but are used in the representation of
1602N/A * <a href="#supplementary">supplementary characters</a>
1602N/A * in the UTF-16 encoding.
0N/A *
1602N/A * @param ch the {@code char} value to be tested.
1602N/A * @return {@code true} if the {@code char} value is between
1602N/A * {@link #MIN_HIGH_SURROGATE} and
1602N/A * {@link #MAX_HIGH_SURROGATE} inclusive;
1602N/A * {@code false} otherwise.
2566N/A * @see Character#isLowSurrogate(char)
1602N/A * @see Character.UnicodeBlock#of(int)
1602N/A * @since 1.5
0N/A */
0N/A public static boolean isHighSurrogate(char ch) {
2561N/A // Help VM constant-fold; MAX_HIGH_SURROGATE + 1 == MIN_LOW_SURROGATE
2561N/A return ch >= MIN_HIGH_SURROGATE && ch < (MAX_HIGH_SURROGATE + 1);
0N/A }
0N/A
0N/A /**
1602N/A * Determines if the given {@code char} value is a
1602N/A * <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit">
1602N/A * Unicode low-surrogate code unit</a>
1602N/A * (also known as <i>trailing-surrogate code unit</i>).
0N/A *
1602N/A * <p>Such values do not represent characters by themselves,
1602N/A * but are used in the representation of
1602N/A * <a href="#supplementary">supplementary characters</a>
1602N/A * in the UTF-16 encoding.
0N/A *
1602N/A * @param ch the {@code char} value to be tested.
1602N/A * @return {@code true} if the {@code char} value is between
1602N/A * {@link #MIN_LOW_SURROGATE} and
1602N/A * {@link #MAX_LOW_SURROGATE} inclusive;
1602N/A * {@code false} otherwise.
2566N/A * @see Character#isHighSurrogate(char)
1602N/A * @since 1.5
0N/A */
0N/A public static boolean isLowSurrogate(char ch) {
2561N/A return ch >= MIN_LOW_SURROGATE && ch < (MAX_LOW_SURROGATE + 1);
0N/A }
0N/A
0N/A /**
1602N/A * Determines if the given {@code char} value is a Unicode
1602N/A * <i>surrogate code unit</i>.
1602N/A *
1602N/A * <p>Such values do not represent characters by themselves,
1602N/A * but are used in the representation of
1602N/A * <a href="#supplementary">supplementary characters</a>
1602N/A * in the UTF-16 encoding.
1602N/A *
1602N/A * <p>A char value is a surrogate code unit if and only if it is either
1602N/A * a {@linkplain #isLowSurrogate(char) low-surrogate code unit} or
1602N/A * a {@linkplain #isHighSurrogate(char) high-surrogate code unit}.
1602N/A *
1602N/A * @param ch the {@code char} value to be tested.
1602N/A * @return {@code true} if the {@code char} value is between
1602N/A * {@link #MIN_SURROGATE} and
1602N/A * {@link #MAX_SURROGATE} inclusive;
1602N/A * {@code false} otherwise.
1602N/A * @since 1.7
1602N/A */
1602N/A public static boolean isSurrogate(char ch) {
2561N/A return ch >= MIN_SURROGATE && ch < (MAX_SURROGATE + 1);
1602N/A }
1602N/A
1602N/A /**
3827N/A * Determines whether the specified pair of {@code char}
1602N/A * values is a valid
1602N/A * <a href="http://www.unicode.org/glossary/#surrogate_pair">
1602N/A * Unicode surrogate pair</a>.
1602N/A
1602N/A * <p>This method is equivalent to the expression:
0N/A * <blockquote><pre>
0N/A * isHighSurrogate(high) && isLowSurrogate(low)
0N/A * </pre></blockquote>
0N/A *
0N/A * @param high the high-surrogate code value to be tested
0N/A * @param low the low-surrogate code value to be tested
3827N/A * @return {@code true} if the specified high and
0N/A * low-surrogate code values represent a valid surrogate pair;
3827N/A * {@code false} otherwise.
0N/A * @since 1.5
0N/A */
0N/A public static boolean isSurrogatePair(char high, char low) {
0N/A return isHighSurrogate(high) && isLowSurrogate(low);
0N/A }
0N/A
0N/A /**
3827N/A * Determines the number of {@code char} values needed to
0N/A * represent the specified character (Unicode code point). If the
0N/A * specified character is equal to or greater than 0x10000, then
0N/A * the method returns 2. Otherwise, the method returns 1.
0N/A *
0N/A * <p>This method doesn't validate the specified character to be a
0N/A * valid Unicode code point. The caller must validate the
0N/A * character value using {@link #isValidCodePoint(int) isValidCodePoint}
0N/A * if necessary.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
0N/A * @return 2 if the character is a valid supplementary character; 1 otherwise.
2566N/A * @see Character#isSupplementaryCodePoint(int)
0N/A * @since 1.5
0N/A */
0N/A public static int charCount(int codePoint) {
2566N/A return codePoint >= MIN_SUPPLEMENTARY_CODE_POINT ? 2 : 1;
0N/A }
0N/A
0N/A /**
0N/A * Converts the specified surrogate pair to its supplementary code
0N/A * point value. This method does not validate the specified
0N/A * surrogate pair. The caller must validate it using {@link
0N/A * #isSurrogatePair(char, char) isSurrogatePair} if necessary.
0N/A *
0N/A * @param high the high-surrogate code unit
0N/A * @param low the low-surrogate code unit
0N/A * @return the supplementary code point composed from the
0N/A * specified surrogate pair.
0N/A * @since 1.5
0N/A */
0N/A public static int toCodePoint(char high, char low) {
1430N/A // Optimized form of:
1430N/A // return ((high - MIN_HIGH_SURROGATE) << 10)
1430N/A // + (low - MIN_LOW_SURROGATE)
1430N/A // + MIN_SUPPLEMENTARY_CODE_POINT;
1430N/A return ((high << 10) + low) + (MIN_SUPPLEMENTARY_CODE_POINT
1430N/A - (MIN_HIGH_SURROGATE << 10)
1430N/A - MIN_LOW_SURROGATE);
0N/A }
0N/A
0N/A /**
0N/A * Returns the code point at the given index of the
3827N/A * {@code CharSequence}. If the {@code char} value at
3827N/A * the given index in the {@code CharSequence} is in the
0N/A * high-surrogate range, the following index is less than the
3827N/A * length of the {@code CharSequence}, and the
3827N/A * {@code char} value at the following index is in the
0N/A * low-surrogate range, then the supplementary code point
0N/A * corresponding to this surrogate pair is returned. Otherwise,
3827N/A * the {@code char} value at the given index is returned.
3827N/A *
3827N/A * @param seq a sequence of {@code char} values (Unicode code
0N/A * units)
3827N/A * @param index the index to the {@code char} values (Unicode
3827N/A * code units) in {@code seq} to be converted
0N/A * @return the Unicode code point at the given index
3827N/A * @exception NullPointerException if {@code seq} is null.
0N/A * @exception IndexOutOfBoundsException if the value
3827N/A * {@code index} is negative or not less than
0N/A * {@link CharSequence#length() seq.length()}.
0N/A * @since 1.5
0N/A */
0N/A public static int codePointAt(CharSequence seq, int index) {
0N/A char c1 = seq.charAt(index++);
0N/A if (isHighSurrogate(c1)) {
0N/A if (index < seq.length()) {
0N/A char c2 = seq.charAt(index);
0N/A if (isLowSurrogate(c2)) {
0N/A return toCodePoint(c1, c2);
0N/A }
0N/A }
0N/A }
0N/A return c1;
0N/A }
0N/A
0N/A /**
0N/A * Returns the code point at the given index of the
3827N/A * {@code char} array. If the {@code char} value at
3827N/A * the given index in the {@code char} array is in the
0N/A * high-surrogate range, the following index is less than the
3827N/A * length of the {@code char} array, and the
3827N/A * {@code char} value at the following index is in the
0N/A * low-surrogate range, then the supplementary code point
0N/A * corresponding to this surrogate pair is returned. Otherwise,
3827N/A * the {@code char} value at the given index is returned.
3827N/A *
3827N/A * @param a the {@code char} array
3827N/A * @param index the index to the {@code char} values (Unicode
3827N/A * code units) in the {@code char} array to be converted
0N/A * @return the Unicode code point at the given index
3827N/A * @exception NullPointerException if {@code a} is null.
0N/A * @exception IndexOutOfBoundsException if the value
3827N/A * {@code index} is negative or not less than
3827N/A * the length of the {@code char} array.
0N/A * @since 1.5
0N/A */
0N/A public static int codePointAt(char[] a, int index) {
0N/A return codePointAtImpl(a, index, a.length);
0N/A }
0N/A
0N/A /**
0N/A * Returns the code point at the given index of the
3827N/A * {@code char} array, where only array elements with
3827N/A * {@code index} less than {@code limit} can be used. If
3827N/A * the {@code char} value at the given index in the
3827N/A * {@code char} array is in the high-surrogate range, the
3827N/A * following index is less than the {@code limit}, and the
3827N/A * {@code char} value at the following index is in the
0N/A * low-surrogate range, then the supplementary code point
0N/A * corresponding to this surrogate pair is returned. Otherwise,
3827N/A * the {@code char} value at the given index is returned.
3827N/A *
3827N/A * @param a the {@code char} array
3827N/A * @param index the index to the {@code char} values (Unicode
3827N/A * code units) in the {@code char} array to be converted
3827N/A * @param limit the index after the last array element that
3827N/A * can be used in the {@code char} array
0N/A * @return the Unicode code point at the given index
3827N/A * @exception NullPointerException if {@code a} is null.
3827N/A * @exception IndexOutOfBoundsException if the {@code index}
3827N/A * argument is negative or not less than the {@code limit}
3827N/A * argument, or if the {@code limit} argument is negative or
3827N/A * greater than the length of the {@code char} array.
0N/A * @since 1.5
0N/A */
0N/A public static int codePointAt(char[] a, int index, int limit) {
0N/A if (index >= limit || limit < 0 || limit > a.length) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A return codePointAtImpl(a, index, limit);
0N/A }
0N/A
2561N/A // throws ArrayIndexOutofBoundsException if index out of bounds
0N/A static int codePointAtImpl(char[] a, int index, int limit) {
0N/A char c1 = a[index++];
0N/A if (isHighSurrogate(c1)) {
0N/A if (index < limit) {
0N/A char c2 = a[index];
0N/A if (isLowSurrogate(c2)) {
0N/A return toCodePoint(c1, c2);
0N/A }
0N/A }
0N/A }
0N/A return c1;
0N/A }
0N/A
0N/A /**
0N/A * Returns the code point preceding the given index of the
3827N/A * {@code CharSequence}. If the {@code char} value at
3827N/A * {@code (index - 1)} in the {@code CharSequence} is in
3827N/A * the low-surrogate range, {@code (index - 2)} is not
3827N/A * negative, and the {@code char} value at {@code (index - 2)}
3827N/A * in the {@code CharSequence} is in the
0N/A * high-surrogate range, then the supplementary code point
0N/A * corresponding to this surrogate pair is returned. Otherwise,
3827N/A * the {@code char} value at {@code (index - 1)} is
0N/A * returned.
0N/A *
3827N/A * @param seq the {@code CharSequence} instance
0N/A * @param index the index following the code point that should be returned
0N/A * @return the Unicode code point value before the given index.
3827N/A * @exception NullPointerException if {@code seq} is null.
3827N/A * @exception IndexOutOfBoundsException if the {@code index}
0N/A * argument is less than 1 or greater than {@link
0N/A * CharSequence#length() seq.length()}.
0N/A * @since 1.5
0N/A */
0N/A public static int codePointBefore(CharSequence seq, int index) {
0N/A char c2 = seq.charAt(--index);
0N/A if (isLowSurrogate(c2)) {
0N/A if (index > 0) {
0N/A char c1 = seq.charAt(--index);
0N/A if (isHighSurrogate(c1)) {
0N/A return toCodePoint(c1, c2);
0N/A }
0N/A }
0N/A }
0N/A return c2;
0N/A }
0N/A
0N/A /**
0N/A * Returns the code point preceding the given index of the
3827N/A * {@code char} array. If the {@code char} value at
3827N/A * {@code (index - 1)} in the {@code char} array is in
3827N/A * the low-surrogate range, {@code (index - 2)} is not
3827N/A * negative, and the {@code char} value at {@code (index - 2)}
3827N/A * in the {@code char} array is in the
0N/A * high-surrogate range, then the supplementary code point
0N/A * corresponding to this surrogate pair is returned. Otherwise,
3827N/A * the {@code char} value at {@code (index - 1)} is
0N/A * returned.
0N/A *
3827N/A * @param a the {@code char} array
0N/A * @param index the index following the code point that should be returned
0N/A * @return the Unicode code point value before the given index.
3827N/A * @exception NullPointerException if {@code a} is null.
3827N/A * @exception IndexOutOfBoundsException if the {@code index}
0N/A * argument is less than 1 or greater than the length of the
3827N/A * {@code char} array
0N/A * @since 1.5
0N/A */
0N/A public static int codePointBefore(char[] a, int index) {
0N/A return codePointBeforeImpl(a, index, 0);
0N/A }
0N/A
0N/A /**
0N/A * Returns the code point preceding the given index of the
3827N/A * {@code char} array, where only array elements with
3827N/A * {@code index} greater than or equal to {@code start}
3827N/A * can be used. If the {@code char} value at {@code (index - 1)}
3827N/A * in the {@code char} array is in the
3827N/A * low-surrogate range, {@code (index - 2)} is not less than
3827N/A * {@code start}, and the {@code char} value at
3827N/A * {@code (index - 2)} in the {@code char} array is in
0N/A * the high-surrogate range, then the supplementary code point
0N/A * corresponding to this surrogate pair is returned. Otherwise,
3827N/A * the {@code char} value at {@code (index - 1)} is
0N/A * returned.
0N/A *
3827N/A * @param a the {@code char} array
0N/A * @param index the index following the code point that should be returned
0N/A * @param start the index of the first array element in the
3827N/A * {@code char} array
0N/A * @return the Unicode code point value before the given index.
3827N/A * @exception NullPointerException if {@code a} is null.
3827N/A * @exception IndexOutOfBoundsException if the {@code index}
3827N/A * argument is not greater than the {@code start} argument or
3827N/A * is greater than the length of the {@code char} array, or
3827N/A * if the {@code start} argument is negative or not less than
3827N/A * the length of the {@code char} array.
0N/A * @since 1.5
0N/A */
0N/A public static int codePointBefore(char[] a, int index, int start) {
0N/A if (index <= start || start < 0 || start >= a.length) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A return codePointBeforeImpl(a, index, start);
0N/A }
0N/A
2561N/A // throws ArrayIndexOutofBoundsException if index-1 out of bounds
0N/A static int codePointBeforeImpl(char[] a, int index, int start) {
0N/A char c2 = a[--index];
0N/A if (isLowSurrogate(c2)) {
0N/A if (index > start) {
0N/A char c1 = a[--index];
0N/A if (isHighSurrogate(c1)) {
0N/A return toCodePoint(c1, c2);
0N/A }
0N/A }
0N/A }
0N/A return c2;
0N/A }
0N/A
0N/A /**
2567N/A * Returns the leading surrogate (a
2567N/A * <a href="http://www.unicode.org/glossary/#high_surrogate_code_unit">
2567N/A * high surrogate code unit</a>) of the
2567N/A * <a href="http://www.unicode.org/glossary/#surrogate_pair">
2567N/A * surrogate pair</a>
2567N/A * representing the specified supplementary character (Unicode
2567N/A * code point) in the UTF-16 encoding. If the specified character
2567N/A * is not a
2567N/A * <a href="Character.html#supplementary">supplementary character</a>,
2567N/A * an unspecified {@code char} is returned.
2567N/A *
2567N/A * <p>If
2567N/A * {@link #isSupplementaryCodePoint isSupplementaryCodePoint(x)}
2567N/A * is {@code true}, then
2567N/A * {@link #isHighSurrogate isHighSurrogate}{@code (highSurrogate(x))} and
2567N/A * {@link #toCodePoint toCodePoint}{@code (highSurrogate(x), }{@link #lowSurrogate lowSurrogate}{@code (x)) == x}
2567N/A * are also always {@code true}.
2567N/A *
2567N/A * @param codePoint a supplementary character (Unicode code point)
2567N/A * @return the leading surrogate code unit used to represent the
2567N/A * character in the UTF-16 encoding
2567N/A * @since 1.7
2567N/A */
2567N/A public static char highSurrogate(int codePoint) {
2567N/A return (char) ((codePoint >>> 10)
2567N/A + (MIN_HIGH_SURROGATE - (MIN_SUPPLEMENTARY_CODE_POINT >>> 10)));
2567N/A }
2567N/A
2567N/A /**
2567N/A * Returns the trailing surrogate (a
2567N/A * <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit">
2567N/A * low surrogate code unit</a>) of the
2567N/A * <a href="http://www.unicode.org/glossary/#surrogate_pair">
2567N/A * surrogate pair</a>
2567N/A * representing the specified supplementary character (Unicode
2567N/A * code point) in the UTF-16 encoding. If the specified character
2567N/A * is not a
2567N/A * <a href="Character.html#supplementary">supplementary character</a>,
2567N/A * an unspecified {@code char} is returned.
2567N/A *
2567N/A * <p>If
2567N/A * {@link #isSupplementaryCodePoint isSupplementaryCodePoint(x)}
2567N/A * is {@code true}, then
2567N/A * {@link #isLowSurrogate isLowSurrogate}{@code (lowSurrogate(x))} and
2567N/A * {@link #toCodePoint toCodePoint}{@code (}{@link #highSurrogate highSurrogate}{@code (x), lowSurrogate(x)) == x}
2567N/A * are also always {@code true}.
2567N/A *
2567N/A * @param codePoint a supplementary character (Unicode code point)
2567N/A * @return the trailing surrogate code unit used to represent the
2567N/A * character in the UTF-16 encoding
2567N/A * @since 1.7
2567N/A */
2567N/A public static char lowSurrogate(int codePoint) {
2567N/A return (char) ((codePoint & 0x3ff) + MIN_LOW_SURROGATE);
2567N/A }
2567N/A
2567N/A /**
0N/A * Converts the specified character (Unicode code point) to its
0N/A * UTF-16 representation. If the specified code point is a BMP
0N/A * (Basic Multilingual Plane or Plane 0) value, the same value is
3827N/A * stored in {@code dst[dstIndex]}, and 1 is returned. If the
0N/A * specified code point is a supplementary character, its
3827N/A * surrogate values are stored in {@code dst[dstIndex]}
3827N/A * (high-surrogate) and {@code dst[dstIndex+1]}
0N/A * (low-surrogate), and 2 is returned.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be converted.
3827N/A * @param dst an array of {@code char} in which the
3827N/A * {@code codePoint}'s UTF-16 value is stored.
3827N/A * @param dstIndex the start index into the {@code dst}
0N/A * array where the converted value is stored.
0N/A * @return 1 if the code point is a BMP code point, 2 if the
0N/A * code point is a supplementary code point.
0N/A * @exception IllegalArgumentException if the specified
3827N/A * {@code codePoint} is not a valid Unicode code point.
3827N/A * @exception NullPointerException if the specified {@code dst} is null.
3827N/A * @exception IndexOutOfBoundsException if {@code dstIndex}
3827N/A * is negative or not less than {@code dst.length}, or if
3827N/A * {@code dst} at {@code dstIndex} doesn't have enough
3827N/A * array element(s) to store the resulting {@code char}
3827N/A * value(s). (If {@code dstIndex} is equal to
3827N/A * {@code dst.length-1} and the specified
3827N/A * {@code codePoint} is a supplementary character, the
0N/A * high-surrogate value is not stored in
3827N/A * {@code dst[dstIndex]}.)
0N/A * @since 1.5
0N/A */
0N/A public static int toChars(int codePoint, char[] dst, int dstIndex) {
2562N/A if (isBmpCodePoint(codePoint)) {
2562N/A dst[dstIndex] = (char) codePoint;
2562N/A return 1;
2562N/A } else if (isValidCodePoint(codePoint)) {
2562N/A toSurrogates(codePoint, dst, dstIndex);
2562N/A return 2;
2562N/A } else {
0N/A throw new IllegalArgumentException();
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * Converts the specified character (Unicode code point) to its
3827N/A * UTF-16 representation stored in a {@code char} array. If
0N/A * the specified code point is a BMP (Basic Multilingual Plane or
3827N/A * Plane 0) value, the resulting {@code char} array has
3827N/A * the same value as {@code codePoint}. If the specified code
0N/A * point is a supplementary code point, the resulting
3827N/A * {@code char} array has the corresponding surrogate pair.
0N/A *
0N/A * @param codePoint a Unicode code point
3827N/A * @return a {@code char} array having
3827N/A * {@code codePoint}'s UTF-16 representation.
0N/A * @exception IllegalArgumentException if the specified
3827N/A * {@code codePoint} is not a valid Unicode code point.
0N/A * @since 1.5
0N/A */
0N/A public static char[] toChars(int codePoint) {
2562N/A if (isBmpCodePoint(codePoint)) {
2562N/A return new char[] { (char) codePoint };
2562N/A } else if (isValidCodePoint(codePoint)) {
2562N/A char[] result = new char[2];
2562N/A toSurrogates(codePoint, result, 0);
2562N/A return result;
2562N/A } else {
0N/A throw new IllegalArgumentException();
0N/A }
0N/A }
0N/A
0N/A static void toSurrogates(int codePoint, char[] dst, int index) {
1430N/A // We write elements "backwards" to guarantee all-or-nothing
2567N/A dst[index+1] = lowSurrogate(codePoint);
2567N/A dst[index] = highSurrogate(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Returns the number of Unicode code points in the text range of
0N/A * the specified char sequence. The text range begins at the
3827N/A * specified {@code beginIndex} and extends to the
3827N/A * {@code char} at index {@code endIndex - 1}. Thus the
3827N/A * length (in {@code char}s) of the text range is
3827N/A * {@code endIndex-beginIndex}. Unpaired surrogates within
0N/A * the text range count as one code point each.
0N/A *
0N/A * @param seq the char sequence
3827N/A * @param beginIndex the index to the first {@code char} of
0N/A * the text range.
3827N/A * @param endIndex the index after the last {@code char} of
0N/A * the text range.
0N/A * @return the number of Unicode code points in the specified text
0N/A * range
3827N/A * @exception NullPointerException if {@code seq} is null.
0N/A * @exception IndexOutOfBoundsException if the
3827N/A * {@code beginIndex} is negative, or {@code endIndex}
0N/A * is larger than the length of the given sequence, or
3827N/A * {@code beginIndex} is larger than {@code endIndex}.
0N/A * @since 1.5
0N/A */
0N/A public static int codePointCount(CharSequence seq, int beginIndex, int endIndex) {
0N/A int length = seq.length();
0N/A if (beginIndex < 0 || endIndex > length || beginIndex > endIndex) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
2561N/A int n = endIndex - beginIndex;
0N/A for (int i = beginIndex; i < endIndex; ) {
2561N/A if (isHighSurrogate(seq.charAt(i++)) && i < endIndex &&
2561N/A isLowSurrogate(seq.charAt(i))) {
2561N/A n--;
2561N/A i++;
0N/A }
0N/A }
0N/A return n;
0N/A }
0N/A
0N/A /**
0N/A * Returns the number of Unicode code points in a subarray of the
3827N/A * {@code char} array argument. The {@code offset}
3827N/A * argument is the index of the first {@code char} of the
3827N/A * subarray and the {@code count} argument specifies the
3827N/A * length of the subarray in {@code char}s. Unpaired
0N/A * surrogates within the subarray count as one code point each.
0N/A *
3827N/A * @param a the {@code char} array
3827N/A * @param offset the index of the first {@code char} in the
3827N/A * given {@code char} array
3827N/A * @param count the length of the subarray in {@code char}s
0N/A * @return the number of Unicode code points in the specified subarray
3827N/A * @exception NullPointerException if {@code a} is null.
3827N/A * @exception IndexOutOfBoundsException if {@code offset} or
3827N/A * {@code count} is negative, or if {@code offset +
3827N/A * count} is larger than the length of the given array.
0N/A * @since 1.5
0N/A */
0N/A public static int codePointCount(char[] a, int offset, int count) {
0N/A if (count > a.length - offset || offset < 0 || count < 0) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A return codePointCountImpl(a, offset, count);
0N/A }
0N/A
0N/A static int codePointCountImpl(char[] a, int offset, int count) {
0N/A int endIndex = offset + count;
2561N/A int n = count;
0N/A for (int i = offset; i < endIndex; ) {
2561N/A if (isHighSurrogate(a[i++]) && i < endIndex &&
2561N/A isLowSurrogate(a[i])) {
2561N/A n--;
2561N/A i++;
0N/A }
0N/A }
0N/A return n;
0N/A }
0N/A
0N/A /**
0N/A * Returns the index within the given char sequence that is offset
3827N/A * from the given {@code index} by {@code codePointOffset}
0N/A * code points. Unpaired surrogates within the text range given by
3827N/A * {@code index} and {@code codePointOffset} count as
0N/A * one code point each.
0N/A *
0N/A * @param seq the char sequence
0N/A * @param index the index to be offset
0N/A * @param codePointOffset the offset in code points
0N/A * @return the index within the char sequence
3827N/A * @exception NullPointerException if {@code seq} is null.
3827N/A * @exception IndexOutOfBoundsException if {@code index}
0N/A * is negative or larger then the length of the char sequence,
3827N/A * or if {@code codePointOffset} is positive and the
3827N/A * subsequence starting with {@code index} has fewer than
3827N/A * {@code codePointOffset} code points, or if
3827N/A * {@code codePointOffset} is negative and the subsequence
3827N/A * before {@code index} has fewer than the absolute value
3827N/A * of {@code codePointOffset} code points.
0N/A * @since 1.5
0N/A */
0N/A public static int offsetByCodePoints(CharSequence seq, int index,
0N/A int codePointOffset) {
0N/A int length = seq.length();
0N/A if (index < 0 || index > length) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A
0N/A int x = index;
0N/A if (codePointOffset >= 0) {
0N/A int i;
0N/A for (i = 0; x < length && i < codePointOffset; i++) {
2561N/A if (isHighSurrogate(seq.charAt(x++)) && x < length &&
2561N/A isLowSurrogate(seq.charAt(x))) {
2561N/A x++;
0N/A }
0N/A }
0N/A if (i < codePointOffset) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A } else {
0N/A int i;
0N/A for (i = codePointOffset; x > 0 && i < 0; i++) {
2561N/A if (isLowSurrogate(seq.charAt(--x)) && x > 0 &&
2561N/A isHighSurrogate(seq.charAt(x-1))) {
2561N/A x--;
0N/A }
0N/A }
0N/A if (i < 0) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A }
0N/A return x;
0N/A }
0N/A
0N/A /**
3827N/A * Returns the index within the given {@code char} subarray
3827N/A * that is offset from the given {@code index} by
3827N/A * {@code codePointOffset} code points. The
3827N/A * {@code start} and {@code count} arguments specify a
3827N/A * subarray of the {@code char} array. Unpaired surrogates
3827N/A * within the text range given by {@code index} and
3827N/A * {@code codePointOffset} count as one code point each.
3827N/A *
3827N/A * @param a the {@code char} array
3827N/A * @param start the index of the first {@code char} of the
0N/A * subarray
3827N/A * @param count the length of the subarray in {@code char}s
0N/A * @param index the index to be offset
0N/A * @param codePointOffset the offset in code points
0N/A * @return the index within the subarray
3827N/A * @exception NullPointerException if {@code a} is null.
0N/A * @exception IndexOutOfBoundsException
3827N/A * if {@code start} or {@code count} is negative,
3827N/A * or if {@code start + count} is larger than the length of
0N/A * the given array,
3827N/A * or if {@code index} is less than {@code start} or
3827N/A * larger then {@code start + count},
3827N/A * or if {@code codePointOffset} is positive and the text range
3827N/A * starting with {@code index} and ending with {@code start + count - 1}
3827N/A * has fewer than {@code codePointOffset} code
0N/A * points,
3827N/A * or if {@code codePointOffset} is negative and the text range
3827N/A * starting with {@code start} and ending with {@code index - 1}
3827N/A * has fewer than the absolute value of
3827N/A * {@code codePointOffset} code points.
0N/A * @since 1.5
0N/A */
0N/A public static int offsetByCodePoints(char[] a, int start, int count,
0N/A int index, int codePointOffset) {
0N/A if (count > a.length-start || start < 0 || count < 0
0N/A || index < start || index > start+count) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A return offsetByCodePointsImpl(a, start, count, index, codePointOffset);
0N/A }
0N/A
0N/A static int offsetByCodePointsImpl(char[]a, int start, int count,
0N/A int index, int codePointOffset) {
0N/A int x = index;
0N/A if (codePointOffset >= 0) {
0N/A int limit = start + count;
0N/A int i;
0N/A for (i = 0; x < limit && i < codePointOffset; i++) {
2561N/A if (isHighSurrogate(a[x++]) && x < limit &&
2561N/A isLowSurrogate(a[x])) {
2561N/A x++;
0N/A }
0N/A }
0N/A if (i < codePointOffset) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A } else {
0N/A int i;
0N/A for (i = codePointOffset; x > start && i < 0; i++) {
2561N/A if (isLowSurrogate(a[--x]) && x > start &&
2561N/A isHighSurrogate(a[x-1])) {
2561N/A x--;
0N/A }
0N/A }
0N/A if (i < 0) {
0N/A throw new IndexOutOfBoundsException();
0N/A }
0N/A }
0N/A return x;
0N/A }
0N/A
2566N/A /**
0N/A * Determines if the specified character is a lowercase character.
0N/A * <p>
0N/A * A character is lowercase if its general category type, provided
3827N/A * by {@code Character.getType(ch)}, is
4138N/A * {@code LOWERCASE_LETTER}, or it has contributory property
4138N/A * Other_Lowercase as defined by the Unicode Standard.
0N/A * <p>
0N/A * The following are examples of lowercase characters:
0N/A * <p><blockquote><pre>
0N/A * 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
0N/A * '&#92;u00DF' '&#92;u00E0' '&#92;u00E1' '&#92;u00E2' '&#92;u00E3' '&#92;u00E4' '&#92;u00E5' '&#92;u00E6'
0N/A * '&#92;u00E7' '&#92;u00E8' '&#92;u00E9' '&#92;u00EA' '&#92;u00EB' '&#92;u00EC' '&#92;u00ED' '&#92;u00EE'
0N/A * '&#92;u00EF' '&#92;u00F0' '&#92;u00F1' '&#92;u00F2' '&#92;u00F3' '&#92;u00F4' '&#92;u00F5' '&#92;u00F6'
0N/A * '&#92;u00F8' '&#92;u00F9' '&#92;u00FA' '&#92;u00FB' '&#92;u00FC' '&#92;u00FD' '&#92;u00FE' '&#92;u00FF'
0N/A * </pre></blockquote>
0N/A * <p> Many other Unicode characters are lowercase too.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isLowerCase(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is lowercase;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isLowerCase(char)
2566N/A * @see Character#isTitleCase(char)
2566N/A * @see Character#toLowerCase(char)
2566N/A * @see Character#getType(char)
0N/A */
0N/A public static boolean isLowerCase(char ch) {
0N/A return isLowerCase((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is a
0N/A * lowercase character.
0N/A * <p>
0N/A * A character is lowercase if its general category type, provided
0N/A * by {@link Character#getType getType(codePoint)}, is
4138N/A * {@code LOWERCASE_LETTER}, or it has contributory property
4138N/A * Other_Lowercase as defined by the Unicode Standard.
0N/A * <p>
0N/A * The following are examples of lowercase characters:
0N/A * <p><blockquote><pre>
0N/A * 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
0N/A * '&#92;u00DF' '&#92;u00E0' '&#92;u00E1' '&#92;u00E2' '&#92;u00E3' '&#92;u00E4' '&#92;u00E5' '&#92;u00E6'
0N/A * '&#92;u00E7' '&#92;u00E8' '&#92;u00E9' '&#92;u00EA' '&#92;u00EB' '&#92;u00EC' '&#92;u00ED' '&#92;u00EE'
0N/A * '&#92;u00EF' '&#92;u00F0' '&#92;u00F1' '&#92;u00F2' '&#92;u00F3' '&#92;u00F4' '&#92;u00F5' '&#92;u00F6'
0N/A * '&#92;u00F8' '&#92;u00F9' '&#92;u00FA' '&#92;u00FB' '&#92;u00FC' '&#92;u00FD' '&#92;u00FE' '&#92;u00FF'
0N/A * </pre></blockquote>
0N/A * <p> Many other Unicode characters are lowercase too.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is lowercase;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isLowerCase(int)
2566N/A * @see Character#isTitleCase(int)
2566N/A * @see Character#toLowerCase(int)
2566N/A * @see Character#getType(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isLowerCase(int codePoint) {
4138N/A return getType(codePoint) == Character.LOWERCASE_LETTER ||
4138N/A CharacterData.of(codePoint).isOtherLowercase(codePoint);
0N/A }
0N/A
2566N/A /**
0N/A * Determines if the specified character is an uppercase character.
0N/A * <p>
0N/A * A character is uppercase if its general category type, provided by
3827N/A * {@code Character.getType(ch)}, is {@code UPPERCASE_LETTER}.
4138N/A * or it has contributory property Other_Uppercase as defined by the Unicode Standard.
0N/A * <p>
0N/A * The following are examples of uppercase characters:
0N/A * <p><blockquote><pre>
0N/A * 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
0N/A * '&#92;u00C0' '&#92;u00C1' '&#92;u00C2' '&#92;u00C3' '&#92;u00C4' '&#92;u00C5' '&#92;u00C6' '&#92;u00C7'
0N/A * '&#92;u00C8' '&#92;u00C9' '&#92;u00CA' '&#92;u00CB' '&#92;u00CC' '&#92;u00CD' '&#92;u00CE' '&#92;u00CF'
0N/A * '&#92;u00D0' '&#92;u00D1' '&#92;u00D2' '&#92;u00D3' '&#92;u00D4' '&#92;u00D5' '&#92;u00D6' '&#92;u00D8'
0N/A * '&#92;u00D9' '&#92;u00DA' '&#92;u00DB' '&#92;u00DC' '&#92;u00DD' '&#92;u00DE'
0N/A * </pre></blockquote>
0N/A * <p> Many other Unicode characters are uppercase too.<p>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isUpperCase(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is uppercase;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isLowerCase(char)
2566N/A * @see Character#isTitleCase(char)
2566N/A * @see Character#toUpperCase(char)
2566N/A * @see Character#getType(char)
0N/A * @since 1.0
0N/A */
0N/A public static boolean isUpperCase(char ch) {
0N/A return isUpperCase((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is an uppercase character.
0N/A * <p>
0N/A * A character is uppercase if its general category type, provided by
4138N/A * {@link Character#getType(int) getType(codePoint)}, is {@code UPPERCASE_LETTER},
4138N/A * or it has contributory property Other_Uppercase as defined by the Unicode Standard.
0N/A * <p>
0N/A * The following are examples of uppercase characters:
0N/A * <p><blockquote><pre>
0N/A * 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
0N/A * '&#92;u00C0' '&#92;u00C1' '&#92;u00C2' '&#92;u00C3' '&#92;u00C4' '&#92;u00C5' '&#92;u00C6' '&#92;u00C7'
0N/A * '&#92;u00C8' '&#92;u00C9' '&#92;u00CA' '&#92;u00CB' '&#92;u00CC' '&#92;u00CD' '&#92;u00CE' '&#92;u00CF'
0N/A * '&#92;u00D0' '&#92;u00D1' '&#92;u00D2' '&#92;u00D3' '&#92;u00D4' '&#92;u00D5' '&#92;u00D6' '&#92;u00D8'
0N/A * '&#92;u00D9' '&#92;u00DA' '&#92;u00DB' '&#92;u00DC' '&#92;u00DD' '&#92;u00DE'
0N/A * </pre></blockquote>
0N/A * <p> Many other Unicode characters are uppercase too.<p>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is uppercase;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isLowerCase(int)
2566N/A * @see Character#isTitleCase(int)
2566N/A * @see Character#toUpperCase(int)
2566N/A * @see Character#getType(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isUpperCase(int codePoint) {
4138N/A return getType(codePoint) == Character.UPPERCASE_LETTER ||
4138N/A CharacterData.of(codePoint).isOtherUppercase(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is a titlecase character.
0N/A * <p>
0N/A * A character is a titlecase character if its general
3827N/A * category type, provided by {@code Character.getType(ch)},
3827N/A * is {@code TITLECASE_LETTER}.
0N/A * <p>
0N/A * Some characters look like pairs of Latin letters. For example, there
0N/A * is an uppercase letter that looks like "LJ" and has a corresponding
0N/A * lowercase letter that looks like "lj". A third form, which looks like "Lj",
0N/A * is the appropriate form to use when rendering a word in lowercase
0N/A * with initial capitals, as for a book title.
0N/A * <p>
0N/A * These are some of the Unicode characters for which this method returns
3827N/A * {@code true}:
0N/A * <ul>
3827N/A * <li>{@code LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON}
3827N/A * <li>{@code LATIN CAPITAL LETTER L WITH SMALL LETTER J}
3827N/A * <li>{@code LATIN CAPITAL LETTER N WITH SMALL LETTER J}
3827N/A * <li>{@code LATIN CAPITAL LETTER D WITH SMALL LETTER Z}
0N/A * </ul>
0N/A * <p> Many other Unicode characters are titlecase too.<p>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isTitleCase(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is titlecase;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isLowerCase(char)
2566N/A * @see Character#isUpperCase(char)
2566N/A * @see Character#toTitleCase(char)
2566N/A * @see Character#getType(char)
0N/A * @since 1.0.2
0N/A */
0N/A public static boolean isTitleCase(char ch) {
0N/A return isTitleCase((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is a titlecase character.
0N/A * <p>
0N/A * A character is a titlecase character if its general
0N/A * category type, provided by {@link Character#getType(int) getType(codePoint)},
3827N/A * is {@code TITLECASE_LETTER}.
0N/A * <p>
0N/A * Some characters look like pairs of Latin letters. For example, there
0N/A * is an uppercase letter that looks like "LJ" and has a corresponding
0N/A * lowercase letter that looks like "lj". A third form, which looks like "Lj",
0N/A * is the appropriate form to use when rendering a word in lowercase
0N/A * with initial capitals, as for a book title.
0N/A * <p>
0N/A * These are some of the Unicode characters for which this method returns
3827N/A * {@code true}:
0N/A * <ul>
3827N/A * <li>{@code LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON}
3827N/A * <li>{@code LATIN CAPITAL LETTER L WITH SMALL LETTER J}
3827N/A * <li>{@code LATIN CAPITAL LETTER N WITH SMALL LETTER J}
3827N/A * <li>{@code LATIN CAPITAL LETTER D WITH SMALL LETTER Z}
0N/A * </ul>
0N/A * <p> Many other Unicode characters are titlecase too.<p>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is titlecase;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isLowerCase(int)
2566N/A * @see Character#isUpperCase(int)
2566N/A * @see Character#toTitleCase(int)
2566N/A * @see Character#getType(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isTitleCase(int codePoint) {
0N/A return getType(codePoint) == Character.TITLECASE_LETTER;
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is a digit.
0N/A * <p>
0N/A * A character is a digit if its general category type, provided
3827N/A * by {@code Character.getType(ch)}, is
3827N/A * {@code DECIMAL_DIGIT_NUMBER}.
0N/A * <p>
0N/A * Some Unicode character ranges that contain digits:
0N/A * <ul>
3827N/A * <li>{@code '\u005Cu0030'} through {@code '\u005Cu0039'},
3827N/A * ISO-LATIN-1 digits ({@code '0'} through {@code '9'})
3827N/A * <li>{@code '\u005Cu0660'} through {@code '\u005Cu0669'},
0N/A * Arabic-Indic digits
3827N/A * <li>{@code '\u005Cu06F0'} through {@code '\u005Cu06F9'},
0N/A * Extended Arabic-Indic digits
3827N/A * <li>{@code '\u005Cu0966'} through {@code '\u005Cu096F'},
0N/A * Devanagari digits
3827N/A * <li>{@code '\u005CuFF10'} through {@code '\u005CuFF19'},
0N/A * Fullwidth digits
0N/A * </ul>
0N/A *
0N/A * Many other character ranges contain digits as well.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isDigit(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is a digit;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#digit(char, int)
2566N/A * @see Character#forDigit(int, int)
2566N/A * @see Character#getType(char)
0N/A */
0N/A public static boolean isDigit(char ch) {
0N/A return isDigit((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is a digit.
0N/A * <p>
0N/A * A character is a digit if its general category type, provided
0N/A * by {@link Character#getType(int) getType(codePoint)}, is
3827N/A * {@code DECIMAL_DIGIT_NUMBER}.
0N/A * <p>
0N/A * Some Unicode character ranges that contain digits:
0N/A * <ul>
3827N/A * <li>{@code '\u005Cu0030'} through {@code '\u005Cu0039'},
3827N/A * ISO-LATIN-1 digits ({@code '0'} through {@code '9'})
3827N/A * <li>{@code '\u005Cu0660'} through {@code '\u005Cu0669'},
0N/A * Arabic-Indic digits
3827N/A * <li>{@code '\u005Cu06F0'} through {@code '\u005Cu06F9'},
0N/A * Extended Arabic-Indic digits
3827N/A * <li>{@code '\u005Cu0966'} through {@code '\u005Cu096F'},
0N/A * Devanagari digits
3827N/A * <li>{@code '\u005CuFF10'} through {@code '\u005CuFF19'},
0N/A * Fullwidth digits
0N/A * </ul>
0N/A *
0N/A * Many other character ranges contain digits as well.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is a digit;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#forDigit(int, int)
2566N/A * @see Character#getType(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isDigit(int codePoint) {
0N/A return getType(codePoint) == Character.DECIMAL_DIGIT_NUMBER;
0N/A }
0N/A
0N/A /**
0N/A * Determines if a character is defined in Unicode.
0N/A * <p>
0N/A * A character is defined if at least one of the following is true:
0N/A * <ul>
0N/A * <li>It has an entry in the UnicodeData file.
0N/A * <li>It has a value in a range defined by the UnicodeData file.
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isDefined(int)} method.
0N/A *
0N/A * @param ch the character to be tested
3827N/A * @return {@code true} if the character has a defined meaning
3827N/A * in Unicode; {@code false} otherwise.
2566N/A * @see Character#isDigit(char)
2566N/A * @see Character#isLetter(char)
2566N/A * @see Character#isLetterOrDigit(char)
2566N/A * @see Character#isLowerCase(char)
2566N/A * @see Character#isTitleCase(char)
2566N/A * @see Character#isUpperCase(char)
0N/A * @since 1.0.2
0N/A */
0N/A public static boolean isDefined(char ch) {
0N/A return isDefined((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if a character (Unicode code point) is defined in Unicode.
0N/A * <p>
0N/A * A character is defined if at least one of the following is true:
0N/A * <ul>
0N/A * <li>It has an entry in the UnicodeData file.
0N/A * <li>It has a value in a range defined by the UnicodeData file.
0N/A * </ul>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character has a defined meaning
3827N/A * in Unicode; {@code false} otherwise.
2566N/A * @see Character#isDigit(int)
2566N/A * @see Character#isLetter(int)
2566N/A * @see Character#isLetterOrDigit(int)
2566N/A * @see Character#isLowerCase(int)
2566N/A * @see Character#isTitleCase(int)
2566N/A * @see Character#isUpperCase(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isDefined(int codePoint) {
0N/A return getType(codePoint) != Character.UNASSIGNED;
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is a letter.
0N/A * <p>
0N/A * A character is considered to be a letter if its general
3827N/A * category type, provided by {@code Character.getType(ch)},
0N/A * is any of the following:
0N/A * <ul>
3827N/A * <li> {@code UPPERCASE_LETTER}
3827N/A * <li> {@code LOWERCASE_LETTER}
3827N/A * <li> {@code TITLECASE_LETTER}
3827N/A * <li> {@code MODIFIER_LETTER}
3827N/A * <li> {@code OTHER_LETTER}
0N/A * </ul>
0N/A *
0N/A * Not all letters have case. Many characters are
0N/A * letters but are neither uppercase nor lowercase nor titlecase.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isLetter(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is a letter;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isDigit(char)
2566N/A * @see Character#isJavaIdentifierStart(char)
2566N/A * @see Character#isJavaLetter(char)
2566N/A * @see Character#isJavaLetterOrDigit(char)
2566N/A * @see Character#isLetterOrDigit(char)
2566N/A * @see Character#isLowerCase(char)
2566N/A * @see Character#isTitleCase(char)
2566N/A * @see Character#isUnicodeIdentifierStart(char)
2566N/A * @see Character#isUpperCase(char)
0N/A */
0N/A public static boolean isLetter(char ch) {
0N/A return isLetter((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is a letter.
0N/A * <p>
0N/A * A character is considered to be a letter if its general
0N/A * category type, provided by {@link Character#getType(int) getType(codePoint)},
0N/A * is any of the following:
0N/A * <ul>
3827N/A * <li> {@code UPPERCASE_LETTER}
3827N/A * <li> {@code LOWERCASE_LETTER}
3827N/A * <li> {@code TITLECASE_LETTER}
3827N/A * <li> {@code MODIFIER_LETTER}
3827N/A * <li> {@code OTHER_LETTER}
0N/A * </ul>
0N/A *
0N/A * Not all letters have case. Many characters are
0N/A * letters but are neither uppercase nor lowercase nor titlecase.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is a letter;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isDigit(int)
2566N/A * @see Character#isJavaIdentifierStart(int)
2566N/A * @see Character#isLetterOrDigit(int)
2566N/A * @see Character#isLowerCase(int)
2566N/A * @see Character#isTitleCase(int)
2566N/A * @see Character#isUnicodeIdentifierStart(int)
2566N/A * @see Character#isUpperCase(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isLetter(int codePoint) {
0N/A return ((((1 << Character.UPPERCASE_LETTER) |
0N/A (1 << Character.LOWERCASE_LETTER) |
0N/A (1 << Character.TITLECASE_LETTER) |
0N/A (1 << Character.MODIFIER_LETTER) |
0N/A (1 << Character.OTHER_LETTER)) >> getType(codePoint)) & 1)
0N/A != 0;
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is a letter or digit.
0N/A * <p>
0N/A * A character is considered to be a letter or digit if either
3827N/A * {@code Character.isLetter(char ch)} or
3827N/A * {@code Character.isDigit(char ch)} returns
3827N/A * {@code true} for the character.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isLetterOrDigit(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is a letter or digit;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isDigit(char)
2566N/A * @see Character#isJavaIdentifierPart(char)
2566N/A * @see Character#isJavaLetter(char)
2566N/A * @see Character#isJavaLetterOrDigit(char)
2566N/A * @see Character#isLetter(char)
2566N/A * @see Character#isUnicodeIdentifierPart(char)
0N/A * @since 1.0.2
0N/A */
0N/A public static boolean isLetterOrDigit(char ch) {
0N/A return isLetterOrDigit((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is a letter or digit.
0N/A * <p>
0N/A * A character is considered to be a letter or digit if either
0N/A * {@link #isLetter(int) isLetter(codePoint)} or
0N/A * {@link #isDigit(int) isDigit(codePoint)} returns
3827N/A * {@code true} for the character.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is a letter or digit;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isDigit(int)
2566N/A * @see Character#isJavaIdentifierPart(int)
2566N/A * @see Character#isLetter(int)
2566N/A * @see Character#isUnicodeIdentifierPart(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isLetterOrDigit(int codePoint) {
0N/A return ((((1 << Character.UPPERCASE_LETTER) |
0N/A (1 << Character.LOWERCASE_LETTER) |
0N/A (1 << Character.TITLECASE_LETTER) |
0N/A (1 << Character.MODIFIER_LETTER) |
0N/A (1 << Character.OTHER_LETTER) |
0N/A (1 << Character.DECIMAL_DIGIT_NUMBER)) >> getType(codePoint)) & 1)
0N/A != 0;
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is permissible as the first
0N/A * character in a Java identifier.
0N/A * <p>
0N/A * A character may start a Java identifier if and only if
0N/A * one of the following is true:
0N/A * <ul>
3827N/A * <li> {@link #isLetter(char) isLetter(ch)} returns {@code true}
3827N/A * <li> {@link #getType(char) getType(ch)} returns {@code LETTER_NUMBER}
3827N/A * <li> {@code ch} is a currency symbol (such as {@code '$'})
3827N/A * <li> {@code ch} is a connecting punctuation character (such as {@code '_'}).
0N/A * </ul>
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character may start a Java
3827N/A * identifier; {@code false} otherwise.
2566N/A * @see Character#isJavaLetterOrDigit(char)
2566N/A * @see Character#isJavaIdentifierStart(char)
2566N/A * @see Character#isJavaIdentifierPart(char)
2566N/A * @see Character#isLetter(char)
2566N/A * @see Character#isLetterOrDigit(char)
2566N/A * @see Character#isUnicodeIdentifierStart(char)
0N/A * @since 1.02
0N/A * @deprecated Replaced by isJavaIdentifierStart(char).
0N/A */
0N/A @Deprecated
0N/A public static boolean isJavaLetter(char ch) {
0N/A return isJavaIdentifierStart(ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character may be part of a Java
0N/A * identifier as other than the first character.
0N/A * <p>
0N/A * A character may be part of a Java identifier if and only if any
0N/A * of the following are true:
0N/A * <ul>
0N/A * <li> it is a letter
3827N/A * <li> it is a currency symbol (such as {@code '$'})
3827N/A * <li> it is a connecting punctuation character (such as {@code '_'})
0N/A * <li> it is a digit
0N/A * <li> it is a numeric letter (such as a Roman numeral character)
0N/A * <li> it is a combining mark
0N/A * <li> it is a non-spacing mark
3827N/A * <li> {@code isIdentifierIgnorable} returns
3827N/A * {@code true} for the character.
0N/A * </ul>
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character may be part of a
3827N/A * Java identifier; {@code false} otherwise.
2566N/A * @see Character#isJavaLetter(char)
2566N/A * @see Character#isJavaIdentifierStart(char)
2566N/A * @see Character#isJavaIdentifierPart(char)
2566N/A * @see Character#isLetter(char)
2566N/A * @see Character#isLetterOrDigit(char)
2566N/A * @see Character#isUnicodeIdentifierPart(char)
2566N/A * @see Character#isIdentifierIgnorable(char)
0N/A * @since 1.02
0N/A * @deprecated Replaced by isJavaIdentifierPart(char).
0N/A */
0N/A @Deprecated
0N/A public static boolean isJavaLetterOrDigit(char ch) {
0N/A return isJavaIdentifierPart(ch);
0N/A }
0N/A
0N/A /**
4138N/A * Determines if the specified character (Unicode code point) is an alphabet.
4138N/A * <p>
4138N/A * A character is considered to be alphabetic if its general category type,
4138N/A * provided by {@link Character#getType(int) getType(codePoint)}, is any of
4138N/A * the following:
4138N/A * <ul>
4138N/A * <li> <code>UPPERCASE_LETTER</code>
4138N/A * <li> <code>LOWERCASE_LETTER</code>
4138N/A * <li> <code>TITLECASE_LETTER</code>
4138N/A * <li> <code>MODIFIER_LETTER</code>
4138N/A * <li> <code>OTHER_LETTER</code>
4138N/A * <li> <code>LETTER_NUMBER</code>
4138N/A * </ul>
4138N/A * or it has contributory property Other_Alphabetic as defined by the
4138N/A * Unicode Standard.
4138N/A *
4138N/A * @param codePoint the character (Unicode code point) to be tested.
4138N/A * @return <code>true</code> if the character is a Unicode alphabet
4138N/A * character, <code>false</code> otherwise.
4138N/A * @since 1.7
4138N/A */
4138N/A public static boolean isAlphabetic(int codePoint) {
4138N/A return (((((1 << Character.UPPERCASE_LETTER) |
4138N/A (1 << Character.LOWERCASE_LETTER) |
4138N/A (1 << Character.TITLECASE_LETTER) |
4138N/A (1 << Character.MODIFIER_LETTER) |
4138N/A (1 << Character.OTHER_LETTER) |
4138N/A (1 << Character.LETTER_NUMBER)) >> getType(codePoint)) & 1) != 0) ||
4138N/A CharacterData.of(codePoint).isOtherAlphabetic(codePoint);
4138N/A }
4138N/A
4138N/A /**
4138N/A * Determines if the specified character (Unicode code point) is a CJKV
4138N/A * (Chinese, Japanese, Korean and Vietnamese) ideograph, as defined by
4138N/A * the Unicode Standard.
4138N/A *
4138N/A * @param codePoint the character (Unicode code point) to be tested.
4138N/A * @return <code>true</code> if the character is a Unicode ideograph
4138N/A * character, <code>false</code> otherwise.
4138N/A * @since 1.7
4138N/A */
4138N/A public static boolean isIdeographic(int codePoint) {
4138N/A return CharacterData.of(codePoint).isIdeographic(codePoint);
4138N/A }
4138N/A
4138N/A /**
0N/A * Determines if the specified character is
0N/A * permissible as the first character in a Java identifier.
0N/A * <p>
0N/A * A character may start a Java identifier if and only if
0N/A * one of the following conditions is true:
0N/A * <ul>
3827N/A * <li> {@link #isLetter(char) isLetter(ch)} returns {@code true}
3827N/A * <li> {@link #getType(char) getType(ch)} returns {@code LETTER_NUMBER}
3827N/A * <li> {@code ch} is a currency symbol (such as {@code '$'})
3827N/A * <li> {@code ch} is a connecting punctuation character (such as {@code '_'}).
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isJavaIdentifierStart(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character may start a Java identifier;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isJavaIdentifierPart(char)
2566N/A * @see Character#isLetter(char)
2566N/A * @see Character#isUnicodeIdentifierStart(char)
0N/A * @see javax.lang.model.SourceVersion#isIdentifier(CharSequence)
0N/A * @since 1.1
0N/A */
0N/A public static boolean isJavaIdentifierStart(char ch) {
0N/A return isJavaIdentifierStart((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the character (Unicode code point) is
0N/A * permissible as the first character in a Java identifier.
0N/A * <p>
0N/A * A character may start a Java identifier if and only if
0N/A * one of the following conditions is true:
0N/A * <ul>
0N/A * <li> {@link #isLetter(int) isLetter(codePoint)}
3827N/A * returns {@code true}
0N/A * <li> {@link #getType(int) getType(codePoint)}
3827N/A * returns {@code LETTER_NUMBER}
3827N/A * <li> the referenced character is a currency symbol (such as {@code '$'})
0N/A * <li> the referenced character is a connecting punctuation character
3827N/A * (such as {@code '_'}).
0N/A * </ul>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character may start a Java identifier;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isJavaIdentifierPart(int)
2566N/A * @see Character#isLetter(int)
2566N/A * @see Character#isUnicodeIdentifierStart(int)
0N/A * @see javax.lang.model.SourceVersion#isIdentifier(CharSequence)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isJavaIdentifierStart(int codePoint) {
0N/A return CharacterData.of(codePoint).isJavaIdentifierStart(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character may be part of a Java
0N/A * identifier as other than the first character.
0N/A * <p>
0N/A * A character may be part of a Java identifier if any of the following
0N/A * are true:
0N/A * <ul>
0N/A * <li> it is a letter
3827N/A * <li> it is a currency symbol (such as {@code '$'})
3827N/A * <li> it is a connecting punctuation character (such as {@code '_'})
0N/A * <li> it is a digit
0N/A * <li> it is a numeric letter (such as a Roman numeral character)
0N/A * <li> it is a combining mark
0N/A * <li> it is a non-spacing mark
3827N/A * <li> {@code isIdentifierIgnorable} returns
3827N/A * {@code true} for the character
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isJavaIdentifierPart(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character may be part of a
3827N/A * Java identifier; {@code false} otherwise.
2566N/A * @see Character#isIdentifierIgnorable(char)
2566N/A * @see Character#isJavaIdentifierStart(char)
2566N/A * @see Character#isLetterOrDigit(char)
2566N/A * @see Character#isUnicodeIdentifierPart(char)
0N/A * @see javax.lang.model.SourceVersion#isIdentifier(CharSequence)
0N/A * @since 1.1
0N/A */
0N/A public static boolean isJavaIdentifierPart(char ch) {
0N/A return isJavaIdentifierPart((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the character (Unicode code point) may be part of a Java
0N/A * identifier as other than the first character.
0N/A * <p>
0N/A * A character may be part of a Java identifier if any of the following
0N/A * are true:
0N/A * <ul>
0N/A * <li> it is a letter
3827N/A * <li> it is a currency symbol (such as {@code '$'})
3827N/A * <li> it is a connecting punctuation character (such as {@code '_'})
0N/A * <li> it is a digit
0N/A * <li> it is a numeric letter (such as a Roman numeral character)
0N/A * <li> it is a combining mark
0N/A * <li> it is a non-spacing mark
0N/A * <li> {@link #isIdentifierIgnorable(int)
3827N/A * isIdentifierIgnorable(codePoint)} returns {@code true} for
0N/A * the character
0N/A * </ul>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character may be part of a
3827N/A * Java identifier; {@code false} otherwise.
2566N/A * @see Character#isIdentifierIgnorable(int)
2566N/A * @see Character#isJavaIdentifierStart(int)
2566N/A * @see Character#isLetterOrDigit(int)
2566N/A * @see Character#isUnicodeIdentifierPart(int)
0N/A * @see javax.lang.model.SourceVersion#isIdentifier(CharSequence)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isJavaIdentifierPart(int codePoint) {
0N/A return CharacterData.of(codePoint).isJavaIdentifierPart(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is permissible as the
0N/A * first character in a Unicode identifier.
0N/A * <p>
0N/A * A character may start a Unicode identifier if and only if
0N/A * one of the following conditions is true:
0N/A * <ul>
3827N/A * <li> {@link #isLetter(char) isLetter(ch)} returns {@code true}
0N/A * <li> {@link #getType(char) getType(ch)} returns
3827N/A * {@code LETTER_NUMBER}.
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isUnicodeIdentifierStart(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character may start a Unicode
3827N/A * identifier; {@code false} otherwise.
2566N/A * @see Character#isJavaIdentifierStart(char)
2566N/A * @see Character#isLetter(char)
2566N/A * @see Character#isUnicodeIdentifierPart(char)
0N/A * @since 1.1
0N/A */
0N/A public static boolean isUnicodeIdentifierStart(char ch) {
0N/A return isUnicodeIdentifierStart((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is permissible as the
0N/A * first character in a Unicode identifier.
0N/A * <p>
0N/A * A character may start a Unicode identifier if and only if
0N/A * one of the following conditions is true:
0N/A * <ul>
0N/A * <li> {@link #isLetter(int) isLetter(codePoint)}
3827N/A * returns {@code true}
0N/A * <li> {@link #getType(int) getType(codePoint)}
3827N/A * returns {@code LETTER_NUMBER}.
0N/A * </ul>
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character may start a Unicode
3827N/A * identifier; {@code false} otherwise.
2566N/A * @see Character#isJavaIdentifierStart(int)
2566N/A * @see Character#isLetter(int)
2566N/A * @see Character#isUnicodeIdentifierPart(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isUnicodeIdentifierStart(int codePoint) {
0N/A return CharacterData.of(codePoint).isUnicodeIdentifierStart(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character may be part of a Unicode
0N/A * identifier as other than the first character.
0N/A * <p>
0N/A * A character may be part of a Unicode identifier if and only if
0N/A * one of the following statements is true:
0N/A * <ul>
0N/A * <li> it is a letter
3827N/A * <li> it is a connecting punctuation character (such as {@code '_'})
0N/A * <li> it is a digit
0N/A * <li> it is a numeric letter (such as a Roman numeral character)
0N/A * <li> it is a combining mark
0N/A * <li> it is a non-spacing mark
3827N/A * <li> {@code isIdentifierIgnorable} returns
3827N/A * {@code true} for this character.
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isUnicodeIdentifierPart(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character may be part of a
3827N/A * Unicode identifier; {@code false} otherwise.
2566N/A * @see Character#isIdentifierIgnorable(char)
2566N/A * @see Character#isJavaIdentifierPart(char)
2566N/A * @see Character#isLetterOrDigit(char)
2566N/A * @see Character#isUnicodeIdentifierStart(char)
0N/A * @since 1.1
0N/A */
0N/A public static boolean isUnicodeIdentifierPart(char ch) {
0N/A return isUnicodeIdentifierPart((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) may be part of a Unicode
0N/A * identifier as other than the first character.
0N/A * <p>
0N/A * A character may be part of a Unicode identifier if and only if
0N/A * one of the following statements is true:
0N/A * <ul>
0N/A * <li> it is a letter
3827N/A * <li> it is a connecting punctuation character (such as {@code '_'})
0N/A * <li> it is a digit
0N/A * <li> it is a numeric letter (such as a Roman numeral character)
0N/A * <li> it is a combining mark
0N/A * <li> it is a non-spacing mark
3827N/A * <li> {@code isIdentifierIgnorable} returns
3827N/A * {@code true} for this character.
0N/A * </ul>
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character may be part of a
3827N/A * Unicode identifier; {@code false} otherwise.
2566N/A * @see Character#isIdentifierIgnorable(int)
2566N/A * @see Character#isJavaIdentifierPart(int)
2566N/A * @see Character#isLetterOrDigit(int)
2566N/A * @see Character#isUnicodeIdentifierStart(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isUnicodeIdentifierPart(int codePoint) {
0N/A return CharacterData.of(codePoint).isUnicodeIdentifierPart(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character should be regarded as
0N/A * an ignorable character in a Java identifier or a Unicode identifier.
0N/A * <p>
0N/A * The following Unicode characters are ignorable in a Java identifier
0N/A * or a Unicode identifier:
0N/A * <ul>
0N/A * <li>ISO control characters that are not whitespace
0N/A * <ul>
3827N/A * <li>{@code '\u005Cu0000'} through {@code '\u005Cu0008'}
3827N/A * <li>{@code '\u005Cu000E'} through {@code '\u005Cu001B'}
3827N/A * <li>{@code '\u005Cu007F'} through {@code '\u005Cu009F'}
0N/A * </ul>
0N/A *
3827N/A * <li>all characters that have the {@code FORMAT} general
0N/A * category value
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isIdentifierIgnorable(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is an ignorable control
0N/A * character that may be part of a Java or Unicode identifier;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isJavaIdentifierPart(char)
2566N/A * @see Character#isUnicodeIdentifierPart(char)
0N/A * @since 1.1
0N/A */
0N/A public static boolean isIdentifierIgnorable(char ch) {
0N/A return isIdentifierIgnorable((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) should be regarded as
0N/A * an ignorable character in a Java identifier or a Unicode identifier.
0N/A * <p>
0N/A * The following Unicode characters are ignorable in a Java identifier
0N/A * or a Unicode identifier:
0N/A * <ul>
0N/A * <li>ISO control characters that are not whitespace
0N/A * <ul>
3827N/A * <li>{@code '\u005Cu0000'} through {@code '\u005Cu0008'}
3827N/A * <li>{@code '\u005Cu000E'} through {@code '\u005Cu001B'}
3827N/A * <li>{@code '\u005Cu007F'} through {@code '\u005Cu009F'}
0N/A * </ul>
0N/A *
3827N/A * <li>all characters that have the {@code FORMAT} general
0N/A * category value
0N/A * </ul>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is an ignorable control
0N/A * character that may be part of a Java or Unicode identifier;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isJavaIdentifierPart(int)
2566N/A * @see Character#isUnicodeIdentifierPart(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isIdentifierIgnorable(int codePoint) {
0N/A return CharacterData.of(codePoint).isIdentifierIgnorable(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Converts the character argument to lowercase using case
0N/A * mapping information from the UnicodeData file.
0N/A * <p>
0N/A * Note that
3827N/A * {@code Character.isLowerCase(Character.toLowerCase(ch))}
3827N/A * does not always return {@code true} for some ranges of
0N/A * characters, particularly those that are symbols or ideographs.
0N/A *
2566N/A * <p>In general, {@link String#toLowerCase()} should be used to map
3827N/A * characters to lowercase. {@code String} case mapping methods
3827N/A * have several benefits over {@code Character} case mapping methods.
3827N/A * {@code String} case mapping methods can perform locale-sensitive
0N/A * mappings, context-sensitive mappings, and 1:M character mappings, whereas
3827N/A * the {@code Character} case mapping methods cannot.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #toLowerCase(int)} method.
0N/A *
0N/A * @param ch the character to be converted.
0N/A * @return the lowercase equivalent of the character, if any;
0N/A * otherwise, the character itself.
2566N/A * @see Character#isLowerCase(char)
2566N/A * @see String#toLowerCase()
0N/A */
0N/A public static char toLowerCase(char ch) {
0N/A return (char)toLowerCase((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Converts the character (Unicode code point) argument to
0N/A * lowercase using case mapping information from the UnicodeData
0N/A * file.
0N/A *
0N/A * <p> Note that
3827N/A * {@code Character.isLowerCase(Character.toLowerCase(codePoint))}
3827N/A * does not always return {@code true} for some ranges of
0N/A * characters, particularly those that are symbols or ideographs.
0N/A *
2566N/A * <p>In general, {@link String#toLowerCase()} should be used to map
3827N/A * characters to lowercase. {@code String} case mapping methods
3827N/A * have several benefits over {@code Character} case mapping methods.
3827N/A * {@code String} case mapping methods can perform locale-sensitive
0N/A * mappings, context-sensitive mappings, and 1:M character mappings, whereas
3827N/A * the {@code Character} case mapping methods cannot.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be converted.
0N/A * @return the lowercase equivalent of the character (Unicode code
0N/A * point), if any; otherwise, the character itself.
2566N/A * @see Character#isLowerCase(int)
2566N/A * @see String#toLowerCase()
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static int toLowerCase(int codePoint) {
0N/A return CharacterData.of(codePoint).toLowerCase(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Converts the character argument to uppercase using case mapping
0N/A * information from the UnicodeData file.
0N/A * <p>
0N/A * Note that
3827N/A * {@code Character.isUpperCase(Character.toUpperCase(ch))}
3827N/A * does not always return {@code true} for some ranges of
0N/A * characters, particularly those that are symbols or ideographs.
0N/A *
2566N/A * <p>In general, {@link String#toUpperCase()} should be used to map
3827N/A * characters to uppercase. {@code String} case mapping methods
3827N/A * have several benefits over {@code Character} case mapping methods.
3827N/A * {@code String} case mapping methods can perform locale-sensitive
0N/A * mappings, context-sensitive mappings, and 1:M character mappings, whereas
3827N/A * the {@code Character} case mapping methods cannot.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #toUpperCase(int)} method.
0N/A *
0N/A * @param ch the character to be converted.
0N/A * @return the uppercase equivalent of the character, if any;
0N/A * otherwise, the character itself.
2566N/A * @see Character#isUpperCase(char)
2566N/A * @see String#toUpperCase()
0N/A */
0N/A public static char toUpperCase(char ch) {
0N/A return (char)toUpperCase((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Converts the character (Unicode code point) argument to
0N/A * uppercase using case mapping information from the UnicodeData
0N/A * file.
0N/A *
0N/A * <p>Note that
3827N/A * {@code Character.isUpperCase(Character.toUpperCase(codePoint))}
3827N/A * does not always return {@code true} for some ranges of
0N/A * characters, particularly those that are symbols or ideographs.
0N/A *
2566N/A * <p>In general, {@link String#toUpperCase()} should be used to map
3827N/A * characters to uppercase. {@code String} case mapping methods
3827N/A * have several benefits over {@code Character} case mapping methods.
3827N/A * {@code String} case mapping methods can perform locale-sensitive
0N/A * mappings, context-sensitive mappings, and 1:M character mappings, whereas
3827N/A * the {@code Character} case mapping methods cannot.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be converted.
0N/A * @return the uppercase equivalent of the character, if any;
0N/A * otherwise, the character itself.
2566N/A * @see Character#isUpperCase(int)
2566N/A * @see String#toUpperCase()
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static int toUpperCase(int codePoint) {
0N/A return CharacterData.of(codePoint).toUpperCase(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Converts the character argument to titlecase using case mapping
0N/A * information from the UnicodeData file. If a character has no
0N/A * explicit titlecase mapping and is not itself a titlecase char
0N/A * according to UnicodeData, then the uppercase mapping is
0N/A * returned as an equivalent titlecase mapping. If the
3827N/A * {@code char} argument is already a titlecase
3827N/A * {@code char}, the same {@code char} value will be
0N/A * returned.
0N/A * <p>
0N/A * Note that
3827N/A * {@code Character.isTitleCase(Character.toTitleCase(ch))}
3827N/A * does not always return {@code true} for some ranges of
0N/A * characters.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #toTitleCase(int)} method.
0N/A *
0N/A * @param ch the character to be converted.
0N/A * @return the titlecase equivalent of the character, if any;
0N/A * otherwise, the character itself.
2566N/A * @see Character#isTitleCase(char)
2566N/A * @see Character#toLowerCase(char)
2566N/A * @see Character#toUpperCase(char)
0N/A * @since 1.0.2
0N/A */
0N/A public static char toTitleCase(char ch) {
0N/A return (char)toTitleCase((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Converts the character (Unicode code point) argument to titlecase using case mapping
0N/A * information from the UnicodeData file. If a character has no
0N/A * explicit titlecase mapping and is not itself a titlecase char
0N/A * according to UnicodeData, then the uppercase mapping is
0N/A * returned as an equivalent titlecase mapping. If the
0N/A * character argument is already a titlecase
0N/A * character, the same character value will be
0N/A * returned.
0N/A *
0N/A * <p>Note that
3827N/A * {@code Character.isTitleCase(Character.toTitleCase(codePoint))}
3827N/A * does not always return {@code true} for some ranges of
0N/A * characters.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be converted.
0N/A * @return the titlecase equivalent of the character, if any;
0N/A * otherwise, the character itself.
2566N/A * @see Character#isTitleCase(int)
2566N/A * @see Character#toLowerCase(int)
2566N/A * @see Character#toUpperCase(int)
0N/A * @since 1.5
0N/A */
0N/A public static int toTitleCase(int codePoint) {
0N/A return CharacterData.of(codePoint).toTitleCase(codePoint);
0N/A }
0N/A
0N/A /**
3827N/A * Returns the numeric value of the character {@code ch} in the
0N/A * specified radix.
0N/A * <p>
3827N/A * If the radix is not in the range {@code MIN_RADIX} &le;
3827N/A * {@code radix} &le; {@code MAX_RADIX} or if the
3827N/A * value of {@code ch} is not a valid digit in the specified
3827N/A * radix, {@code -1} is returned. A character is a valid digit
0N/A * if at least one of the following is true:
0N/A * <ul>
3827N/A * <li>The method {@code isDigit} is {@code true} of the character
0N/A * and the Unicode decimal digit value of the character (or its
0N/A * single-character decomposition) is less than the specified radix.
0N/A * In this case the decimal digit value is returned.
0N/A * <li>The character is one of the uppercase Latin letters
3827N/A * {@code 'A'} through {@code 'Z'} and its code is less than
3827N/A * {@code radix + 'A' - 10}.
3827N/A * In this case, {@code ch - 'A' + 10}
0N/A * is returned.
0N/A * <li>The character is one of the lowercase Latin letters
3827N/A * {@code 'a'} through {@code 'z'} and its code is less than
3827N/A * {@code radix + 'a' - 10}.
3827N/A * In this case, {@code ch - 'a' + 10}
3827N/A * is returned.
3827N/A * <li>The character is one of the fullwidth uppercase Latin letters A
3827N/A * ({@code '\u005CuFF21'}) through Z ({@code '\u005CuFF3A'})
3827N/A * and its code is less than
3827N/A * {@code radix + '\u005CuFF21' - 10}.
3827N/A * In this case, {@code ch - '\u005CuFF21' + 10}
3827N/A * is returned.
3827N/A * <li>The character is one of the fullwidth lowercase Latin letters a
3827N/A * ({@code '\u005CuFF41'}) through z ({@code '\u005CuFF5A'})
3827N/A * and its code is less than
3827N/A * {@code radix + '\u005CuFF41' - 10}.
3827N/A * In this case, {@code ch - '\u005CuFF41' + 10}
0N/A * is returned.
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #digit(int, int)} method.
0N/A *
0N/A * @param ch the character to be converted.
0N/A * @param radix the radix.
0N/A * @return the numeric value represented by the character in the
0N/A * specified radix.
2566N/A * @see Character#forDigit(int, int)
2566N/A * @see Character#isDigit(char)
0N/A */
0N/A public static int digit(char ch, int radix) {
0N/A return digit((int)ch, radix);
0N/A }
0N/A
0N/A /**
0N/A * Returns the numeric value of the specified character (Unicode
0N/A * code point) in the specified radix.
0N/A *
3827N/A * <p>If the radix is not in the range {@code MIN_RADIX} &le;
3827N/A * {@code radix} &le; {@code MAX_RADIX} or if the
0N/A * character is not a valid digit in the specified
3827N/A * radix, {@code -1} is returned. A character is a valid digit
0N/A * if at least one of the following is true:
0N/A * <ul>
3827N/A * <li>The method {@link #isDigit(int) isDigit(codePoint)} is {@code true} of the character
0N/A * and the Unicode decimal digit value of the character (or its
0N/A * single-character decomposition) is less than the specified radix.
0N/A * In this case the decimal digit value is returned.
0N/A * <li>The character is one of the uppercase Latin letters
3827N/A * {@code 'A'} through {@code 'Z'} and its code is less than
3827N/A * {@code radix + 'A' - 10}.
3827N/A * In this case, {@code codePoint - 'A' + 10}
0N/A * is returned.
0N/A * <li>The character is one of the lowercase Latin letters
3827N/A * {@code 'a'} through {@code 'z'} and its code is less than
3827N/A * {@code radix + 'a' - 10}.
3827N/A * In this case, {@code codePoint - 'a' + 10}
3827N/A * is returned.
3827N/A * <li>The character is one of the fullwidth uppercase Latin letters A
3827N/A * ({@code '\u005CuFF21'}) through Z ({@code '\u005CuFF3A'})
3827N/A * and its code is less than
3827N/A * {@code radix + '\u005CuFF21' - 10}.
3827N/A * In this case,
3827N/A * {@code codePoint - '\u005CuFF21' + 10}
3827N/A * is returned.
3827N/A * <li>The character is one of the fullwidth lowercase Latin letters a
3827N/A * ({@code '\u005CuFF41'}) through z ({@code '\u005CuFF5A'})
3827N/A * and its code is less than
3827N/A * {@code radix + '\u005CuFF41'- 10}.
3827N/A * In this case,
3827N/A * {@code codePoint - '\u005CuFF41' + 10}
0N/A * is returned.
0N/A * </ul>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be converted.
0N/A * @param radix the radix.
0N/A * @return the numeric value represented by the character in the
0N/A * specified radix.
2566N/A * @see Character#forDigit(int, int)
2566N/A * @see Character#isDigit(int)
0N/A * @since 1.5
0N/A */
0N/A public static int digit(int codePoint, int radix) {
0N/A return CharacterData.of(codePoint).digit(codePoint, radix);
0N/A }
0N/A
0N/A /**
3827N/A * Returns the {@code int} value that the specified Unicode
0N/A * character represents. For example, the character
3827N/A * {@code '\u005Cu216C'} (the roman numeral fifty) will return
0N/A * an int with a value of 50.
0N/A * <p>
3827N/A * The letters A-Z in their uppercase ({@code '\u005Cu0041'} through
3827N/A * {@code '\u005Cu005A'}), lowercase
3827N/A * ({@code '\u005Cu0061'} through {@code '\u005Cu007A'}), and
3827N/A * full width variant ({@code '\u005CuFF21'} through
3827N/A * {@code '\u005CuFF3A'} and {@code '\u005CuFF41'} through
3827N/A * {@code '\u005CuFF5A'}) forms have numeric values from 10
0N/A * through 35. This is independent of the Unicode specification,
3827N/A * which does not assign numeric values to these {@code char}
0N/A * values.
0N/A * <p>
0N/A * If the character does not have a numeric value, then -1 is returned.
0N/A * If the character has a numeric value that cannot be represented as a
0N/A * nonnegative integer (for example, a fractional value), then -2
0N/A * is returned.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #getNumericValue(int)} method.
0N/A *
0N/A * @param ch the character to be converted.
3827N/A * @return the numeric value of the character, as a nonnegative {@code int}
0N/A * value; -2 if the character has a numeric value that is not a
0N/A * nonnegative integer; -1 if the character has no numeric value.
2566N/A * @see Character#forDigit(int, int)
2566N/A * @see Character#isDigit(char)
0N/A * @since 1.1
0N/A */
0N/A public static int getNumericValue(char ch) {
0N/A return getNumericValue((int)ch);
0N/A }
0N/A
0N/A /**
3827N/A * Returns the {@code int} value that the specified
0N/A * character (Unicode code point) represents. For example, the character
3827N/A * {@code '\u005Cu216C'} (the Roman numeral fifty) will return
3827N/A * an {@code int} with a value of 50.
0N/A * <p>
3827N/A * The letters A-Z in their uppercase ({@code '\u005Cu0041'} through
3827N/A * {@code '\u005Cu005A'}), lowercase
3827N/A * ({@code '\u005Cu0061'} through {@code '\u005Cu007A'}), and
3827N/A * full width variant ({@code '\u005CuFF21'} through
3827N/A * {@code '\u005CuFF3A'} and {@code '\u005CuFF41'} through
3827N/A * {@code '\u005CuFF5A'}) forms have numeric values from 10
0N/A * through 35. This is independent of the Unicode specification,
3827N/A * which does not assign numeric values to these {@code char}
0N/A * values.
0N/A * <p>
0N/A * If the character does not have a numeric value, then -1 is returned.
0N/A * If the character has a numeric value that cannot be represented as a
0N/A * nonnegative integer (for example, a fractional value), then -2
0N/A * is returned.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be converted.
3827N/A * @return the numeric value of the character, as a nonnegative {@code int}
0N/A * value; -2 if the character has a numeric value that is not a
0N/A * nonnegative integer; -1 if the character has no numeric value.
2566N/A * @see Character#forDigit(int, int)
2566N/A * @see Character#isDigit(int)
0N/A * @since 1.5
0N/A */
0N/A public static int getNumericValue(int codePoint) {
0N/A return CharacterData.of(codePoint).getNumericValue(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is ISO-LATIN-1 white space.
3827N/A * This method returns {@code true} for the following five
0N/A * characters only:
0N/A * <table>
3827N/A * <tr><td>{@code '\t'}</td> <td>{@code U+0009}</td>
3827N/A * <td>{@code HORIZONTAL TABULATION}</td></tr>
3827N/A * <tr><td>{@code '\n'}</td> <td>{@code U+000A}</td>
3827N/A * <td>{@code NEW LINE}</td></tr>
3827N/A * <tr><td>{@code '\f'}</td> <td>{@code U+000C}</td>
3827N/A * <td>{@code FORM FEED}</td></tr>
3827N/A * <tr><td>{@code '\r'}</td> <td>{@code U+000D}</td>
3827N/A * <td>{@code CARRIAGE RETURN}</td></tr>
3827N/A * <tr><td>{@code '&nbsp;'}</td> <td>{@code U+0020}</td>
3827N/A * <td>{@code SPACE}</td></tr>
0N/A * </table>
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is ISO-LATIN-1 white
3827N/A * space; {@code false} otherwise.
2566N/A * @see Character#isSpaceChar(char)
2566N/A * @see Character#isWhitespace(char)
0N/A * @deprecated Replaced by isWhitespace(char).
0N/A */
0N/A @Deprecated
0N/A public static boolean isSpace(char ch) {
0N/A return (ch <= 0x0020) &&
0N/A (((((1L << 0x0009) |
0N/A (1L << 0x000A) |
0N/A (1L << 0x000C) |
0N/A (1L << 0x000D) |
0N/A (1L << 0x0020)) >> ch) & 1L) != 0);
0N/A }
0N/A
0N/A
0N/A /**
0N/A * Determines if the specified character is a Unicode space character.
0N/A * A character is considered to be a space character if and only if
4138N/A * it is specified to be a space character by the Unicode Standard. This
0N/A * method returns true if the character's general category type is any of
0N/A * the following:
0N/A * <ul>
3827N/A * <li> {@code SPACE_SEPARATOR}
3827N/A * <li> {@code LINE_SEPARATOR}
3827N/A * <li> {@code PARAGRAPH_SEPARATOR}
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isSpaceChar(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is a space character;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isWhitespace(char)
0N/A * @since 1.1
0N/A */
0N/A public static boolean isSpaceChar(char ch) {
0N/A return isSpaceChar((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is a
0N/A * Unicode space character. A character is considered to be a
0N/A * space character if and only if it is specified to be a space
4138N/A * character by the Unicode Standard. This method returns true if
0N/A * the character's general category type is any of the following:
0N/A *
0N/A * <ul>
0N/A * <li> {@link #SPACE_SEPARATOR}
0N/A * <li> {@link #LINE_SEPARATOR}
0N/A * <li> {@link #PARAGRAPH_SEPARATOR}
0N/A * </ul>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is a space character;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isWhitespace(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isSpaceChar(int codePoint) {
0N/A return ((((1 << Character.SPACE_SEPARATOR) |
0N/A (1 << Character.LINE_SEPARATOR) |
0N/A (1 << Character.PARAGRAPH_SEPARATOR)) >> getType(codePoint)) & 1)
0N/A != 0;
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is white space according to Java.
0N/A * A character is a Java whitespace character if and only if it satisfies
0N/A * one of the following criteria:
0N/A * <ul>
3827N/A * <li> It is a Unicode space character ({@code SPACE_SEPARATOR},
3827N/A * {@code LINE_SEPARATOR}, or {@code PARAGRAPH_SEPARATOR})
3827N/A * but is not also a non-breaking space ({@code '\u005Cu00A0'},
3827N/A * {@code '\u005Cu2007'}, {@code '\u005Cu202F'}).
3827N/A * <li> It is {@code '\u005Ct'}, U+0009 HORIZONTAL TABULATION.
3827N/A * <li> It is {@code '\u005Cn'}, U+000A LINE FEED.
3827N/A * <li> It is {@code '\u005Cu000B'}, U+000B VERTICAL TABULATION.
3827N/A * <li> It is {@code '\u005Cf'}, U+000C FORM FEED.
3827N/A * <li> It is {@code '\u005Cr'}, U+000D CARRIAGE RETURN.
3827N/A * <li> It is {@code '\u005Cu001C'}, U+001C FILE SEPARATOR.
3827N/A * <li> It is {@code '\u005Cu001D'}, U+001D GROUP SEPARATOR.
3827N/A * <li> It is {@code '\u005Cu001E'}, U+001E RECORD SEPARATOR.
3827N/A * <li> It is {@code '\u005Cu001F'}, U+001F UNIT SEPARATOR.
0N/A * </ul>
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isWhitespace(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is a Java whitespace
3827N/A * character; {@code false} otherwise.
2566N/A * @see Character#isSpaceChar(char)
0N/A * @since 1.1
0N/A */
0N/A public static boolean isWhitespace(char ch) {
0N/A return isWhitespace((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character (Unicode code point) is
0N/A * white space according to Java. A character is a Java
0N/A * whitespace character if and only if it satisfies one of the
0N/A * following criteria:
0N/A * <ul>
0N/A * <li> It is a Unicode space character ({@link #SPACE_SEPARATOR},
0N/A * {@link #LINE_SEPARATOR}, or {@link #PARAGRAPH_SEPARATOR})
3827N/A * but is not also a non-breaking space ({@code '\u005Cu00A0'},
3827N/A * {@code '\u005Cu2007'}, {@code '\u005Cu202F'}).
3827N/A * <li> It is {@code '\u005Ct'}, U+0009 HORIZONTAL TABULATION.
3827N/A * <li> It is {@code '\u005Cn'}, U+000A LINE FEED.
3827N/A * <li> It is {@code '\u005Cu000B'}, U+000B VERTICAL TABULATION.
3827N/A * <li> It is {@code '\u005Cf'}, U+000C FORM FEED.
3827N/A * <li> It is {@code '\u005Cr'}, U+000D CARRIAGE RETURN.
3827N/A * <li> It is {@code '\u005Cu001C'}, U+001C FILE SEPARATOR.
3827N/A * <li> It is {@code '\u005Cu001D'}, U+001D GROUP SEPARATOR.
3827N/A * <li> It is {@code '\u005Cu001E'}, U+001E RECORD SEPARATOR.
3827N/A * <li> It is {@code '\u005Cu001F'}, U+001F UNIT SEPARATOR.
0N/A * </ul>
0N/A * <p>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is a Java whitespace
3827N/A * character; {@code false} otherwise.
2566N/A * @see Character#isSpaceChar(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isWhitespace(int codePoint) {
0N/A return CharacterData.of(codePoint).isWhitespace(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the specified character is an ISO control
0N/A * character. A character is considered to be an ISO control
3827N/A * character if its code is in the range {@code '\u005Cu0000'}
3827N/A * through {@code '\u005Cu001F'} or in the range
3827N/A * {@code '\u005Cu007F'} through {@code '\u005Cu009F'}.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isISOControl(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return {@code true} if the character is an ISO control character;
3827N/A * {@code false} otherwise.
0N/A *
2566N/A * @see Character#isSpaceChar(char)
2566N/A * @see Character#isWhitespace(char)
0N/A * @since 1.1
0N/A */
0N/A public static boolean isISOControl(char ch) {
0N/A return isISOControl((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines if the referenced character (Unicode code point) is an ISO control
0N/A * character. A character is considered to be an ISO control
3827N/A * character if its code is in the range {@code '\u005Cu0000'}
3827N/A * through {@code '\u005Cu001F'} or in the range
3827N/A * {@code '\u005Cu007F'} through {@code '\u005Cu009F'}.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is an ISO control character;
3827N/A * {@code false} otherwise.
2566N/A * @see Character#isSpaceChar(int)
2566N/A * @see Character#isWhitespace(int)
0N/A * @since 1.5
0N/A */
0N/A public static boolean isISOControl(int codePoint) {
2561N/A // Optimized form of:
2561N/A // (codePoint >= 0x00 && codePoint <= 0x1F) ||
2561N/A // (codePoint >= 0x7F && codePoint <= 0x9F);
2561N/A return codePoint <= 0x9F &&
2561N/A (codePoint >= 0x7F || (codePoint >>> 5 == 0));
0N/A }
0N/A
0N/A /**
0N/A * Returns a value indicating a character's general category.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #getType(int)} method.
0N/A *
0N/A * @param ch the character to be tested.
3827N/A * @return a value of type {@code int} representing the
0N/A * character's general category.
2566N/A * @see Character#COMBINING_SPACING_MARK
2566N/A * @see Character#CONNECTOR_PUNCTUATION
2566N/A * @see Character#CONTROL
2566N/A * @see Character#CURRENCY_SYMBOL
2566N/A * @see Character#DASH_PUNCTUATION
2566N/A * @see Character#DECIMAL_DIGIT_NUMBER
2566N/A * @see Character#ENCLOSING_MARK
2566N/A * @see Character#END_PUNCTUATION
2566N/A * @see Character#FINAL_QUOTE_PUNCTUATION
2566N/A * @see Character#FORMAT
2566N/A * @see Character#INITIAL_QUOTE_PUNCTUATION
2566N/A * @see Character#LETTER_NUMBER
2566N/A * @see Character#LINE_SEPARATOR
2566N/A * @see Character#LOWERCASE_LETTER
2566N/A * @see Character#MATH_SYMBOL
2566N/A * @see Character#MODIFIER_LETTER
2566N/A * @see Character#MODIFIER_SYMBOL
2566N/A * @see Character#NON_SPACING_MARK
2566N/A * @see Character#OTHER_LETTER
2566N/A * @see Character#OTHER_NUMBER
2566N/A * @see Character#OTHER_PUNCTUATION
2566N/A * @see Character#OTHER_SYMBOL
2566N/A * @see Character#PARAGRAPH_SEPARATOR
2566N/A * @see Character#PRIVATE_USE
2566N/A * @see Character#SPACE_SEPARATOR
2566N/A * @see Character#START_PUNCTUATION
2566N/A * @see Character#SURROGATE
2566N/A * @see Character#TITLECASE_LETTER
2566N/A * @see Character#UNASSIGNED
2566N/A * @see Character#UPPERCASE_LETTER
0N/A * @since 1.1
0N/A */
0N/A public static int getType(char ch) {
0N/A return getType((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Returns a value indicating a character's general category.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return a value of type {@code int} representing the
0N/A * character's general category.
0N/A * @see Character#COMBINING_SPACING_MARK COMBINING_SPACING_MARK
0N/A * @see Character#CONNECTOR_PUNCTUATION CONNECTOR_PUNCTUATION
0N/A * @see Character#CONTROL CONTROL
0N/A * @see Character#CURRENCY_SYMBOL CURRENCY_SYMBOL
0N/A * @see Character#DASH_PUNCTUATION DASH_PUNCTUATION
0N/A * @see Character#DECIMAL_DIGIT_NUMBER DECIMAL_DIGIT_NUMBER
0N/A * @see Character#ENCLOSING_MARK ENCLOSING_MARK
0N/A * @see Character#END_PUNCTUATION END_PUNCTUATION
0N/A * @see Character#FINAL_QUOTE_PUNCTUATION FINAL_QUOTE_PUNCTUATION
0N/A * @see Character#FORMAT FORMAT
0N/A * @see Character#INITIAL_QUOTE_PUNCTUATION INITIAL_QUOTE_PUNCTUATION
0N/A * @see Character#LETTER_NUMBER LETTER_NUMBER
0N/A * @see Character#LINE_SEPARATOR LINE_SEPARATOR
0N/A * @see Character#LOWERCASE_LETTER LOWERCASE_LETTER
0N/A * @see Character#MATH_SYMBOL MATH_SYMBOL
0N/A * @see Character#MODIFIER_LETTER MODIFIER_LETTER
0N/A * @see Character#MODIFIER_SYMBOL MODIFIER_SYMBOL
0N/A * @see Character#NON_SPACING_MARK NON_SPACING_MARK
0N/A * @see Character#OTHER_LETTER OTHER_LETTER
0N/A * @see Character#OTHER_NUMBER OTHER_NUMBER
0N/A * @see Character#OTHER_PUNCTUATION OTHER_PUNCTUATION
0N/A * @see Character#OTHER_SYMBOL OTHER_SYMBOL
0N/A * @see Character#PARAGRAPH_SEPARATOR PARAGRAPH_SEPARATOR
0N/A * @see Character#PRIVATE_USE PRIVATE_USE
0N/A * @see Character#SPACE_SEPARATOR SPACE_SEPARATOR
0N/A * @see Character#START_PUNCTUATION START_PUNCTUATION
0N/A * @see Character#SURROGATE SURROGATE
0N/A * @see Character#TITLECASE_LETTER TITLECASE_LETTER
0N/A * @see Character#UNASSIGNED UNASSIGNED
0N/A * @see Character#UPPERCASE_LETTER UPPERCASE_LETTER
0N/A * @since 1.5
0N/A */
0N/A public static int getType(int codePoint) {
0N/A return CharacterData.of(codePoint).getType(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines the character representation for a specific digit in
3827N/A * the specified radix. If the value of {@code radix} is not a
3827N/A * valid radix, or the value of {@code digit} is not a valid
0N/A * digit in the specified radix, the null character
3827N/A * ({@code '\u005Cu0000'}) is returned.
0N/A * <p>
3827N/A * The {@code radix} argument is valid if it is greater than or
3827N/A * equal to {@code MIN_RADIX} and less than or equal to
3827N/A * {@code MAX_RADIX}. The {@code digit} argument is valid if
3827N/A * {@code 0 <= digit < radix}.
0N/A * <p>
0N/A * If the digit is less than 10, then
3827N/A * {@code '0' + digit} is returned. Otherwise, the value
3827N/A * {@code 'a' + digit - 10} is returned.
0N/A *
0N/A * @param digit the number to convert to a character.
0N/A * @param radix the radix.
3827N/A * @return the {@code char} representation of the specified digit
0N/A * in the specified radix.
2566N/A * @see Character#MIN_RADIX
2566N/A * @see Character#MAX_RADIX
2566N/A * @see Character#digit(char, int)
0N/A */
0N/A public static char forDigit(int digit, int radix) {
0N/A if ((digit >= radix) || (digit < 0)) {
0N/A return '\0';
0N/A }
0N/A if ((radix < Character.MIN_RADIX) || (radix > Character.MAX_RADIX)) {
0N/A return '\0';
0N/A }
0N/A if (digit < 10) {
0N/A return (char)('0' + digit);
0N/A }
0N/A return (char)('a' - 10 + digit);
0N/A }
0N/A
0N/A /**
0N/A * Returns the Unicode directionality property for the given
0N/A * character. Character directionality is used to calculate the
0N/A * visual ordering of text. The directionality value of undefined
3827N/A * {@code char} values is {@code DIRECTIONALITY_UNDEFINED}.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #getDirectionality(int)} method.
0N/A *
3827N/A * @param ch {@code char} for which the directionality property
0N/A * is requested.
3827N/A * @return the directionality property of the {@code char} value.
0N/A *
0N/A * @see Character#DIRECTIONALITY_UNDEFINED
0N/A * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT
0N/A * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT
0N/A * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC
0N/A * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER
0N/A * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR
0N/A * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR
0N/A * @see Character#DIRECTIONALITY_ARABIC_NUMBER
0N/A * @see Character#DIRECTIONALITY_COMMON_NUMBER_SEPARATOR
0N/A * @see Character#DIRECTIONALITY_NONSPACING_MARK
0N/A * @see Character#DIRECTIONALITY_BOUNDARY_NEUTRAL
0N/A * @see Character#DIRECTIONALITY_PARAGRAPH_SEPARATOR
0N/A * @see Character#DIRECTIONALITY_SEGMENT_SEPARATOR
0N/A * @see Character#DIRECTIONALITY_WHITESPACE
0N/A * @see Character#DIRECTIONALITY_OTHER_NEUTRALS
0N/A * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING
0N/A * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE
0N/A * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING
0N/A * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE
0N/A * @see Character#DIRECTIONALITY_POP_DIRECTIONAL_FORMAT
0N/A * @since 1.4
0N/A */
0N/A public static byte getDirectionality(char ch) {
0N/A return getDirectionality((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Returns the Unicode directionality property for the given
0N/A * character (Unicode code point). Character directionality is
0N/A * used to calculate the visual ordering of text. The
0N/A * directionality value of undefined character is {@link
0N/A * #DIRECTIONALITY_UNDEFINED}.
0N/A *
0N/A * @param codePoint the character (Unicode code point) for which
0N/A * the directionality property is requested.
0N/A * @return the directionality property of the character.
0N/A *
0N/A * @see Character#DIRECTIONALITY_UNDEFINED DIRECTIONALITY_UNDEFINED
0N/A * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT DIRECTIONALITY_LEFT_TO_RIGHT
0N/A * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT DIRECTIONALITY_RIGHT_TO_LEFT
0N/A * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC
0N/A * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER DIRECTIONALITY_EUROPEAN_NUMBER
0N/A * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR
0N/A * @see Character#DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR
0N/A * @see Character#DIRECTIONALITY_ARABIC_NUMBER DIRECTIONALITY_ARABIC_NUMBER
0N/A * @see Character#DIRECTIONALITY_COMMON_NUMBER_SEPARATOR DIRECTIONALITY_COMMON_NUMBER_SEPARATOR
0N/A * @see Character#DIRECTIONALITY_NONSPACING_MARK DIRECTIONALITY_NONSPACING_MARK
0N/A * @see Character#DIRECTIONALITY_BOUNDARY_NEUTRAL DIRECTIONALITY_BOUNDARY_NEUTRAL
0N/A * @see Character#DIRECTIONALITY_PARAGRAPH_SEPARATOR DIRECTIONALITY_PARAGRAPH_SEPARATOR
0N/A * @see Character#DIRECTIONALITY_SEGMENT_SEPARATOR DIRECTIONALITY_SEGMENT_SEPARATOR
0N/A * @see Character#DIRECTIONALITY_WHITESPACE DIRECTIONALITY_WHITESPACE
0N/A * @see Character#DIRECTIONALITY_OTHER_NEUTRALS DIRECTIONALITY_OTHER_NEUTRALS
0N/A * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING
0N/A * @see Character#DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE
0N/A * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING
0N/A * @see Character#DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE
0N/A * @see Character#DIRECTIONALITY_POP_DIRECTIONAL_FORMAT DIRECTIONALITY_POP_DIRECTIONAL_FORMAT
0N/A * @since 1.5
0N/A */
0N/A public static byte getDirectionality(int codePoint) {
0N/A return CharacterData.of(codePoint).getDirectionality(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Determines whether the character is mirrored according to the
0N/A * Unicode specification. Mirrored characters should have their
0N/A * glyphs horizontally mirrored when displayed in text that is
3827N/A * right-to-left. For example, {@code '\u005Cu0028'} LEFT
0N/A * PARENTHESIS is semantically defined to be an <i>opening
0N/A * parenthesis</i>. This will appear as a "(" in text that is
0N/A * left-to-right but as a ")" in text that is right-to-left.
0N/A *
0N/A * <p><b>Note:</b> This method cannot handle <a
0N/A * href="#supplementary"> supplementary characters</a>. To support
0N/A * all Unicode characters, including supplementary characters, use
0N/A * the {@link #isMirrored(int)} method.
0N/A *
3827N/A * @param ch {@code char} for which the mirrored property is requested
3827N/A * @return {@code true} if the char is mirrored, {@code false}
3827N/A * if the {@code char} is not mirrored or is not defined.
0N/A * @since 1.4
0N/A */
0N/A public static boolean isMirrored(char ch) {
0N/A return isMirrored((int)ch);
0N/A }
0N/A
0N/A /**
0N/A * Determines whether the specified character (Unicode code point)
0N/A * is mirrored according to the Unicode specification. Mirrored
0N/A * characters should have their glyphs horizontally mirrored when
0N/A * displayed in text that is right-to-left. For example,
3827N/A * {@code '\u005Cu0028'} LEFT PARENTHESIS is semantically
0N/A * defined to be an <i>opening parenthesis</i>. This will appear
0N/A * as a "(" in text that is left-to-right but as a ")" in text
0N/A * that is right-to-left.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be tested.
3827N/A * @return {@code true} if the character is mirrored, {@code false}
0N/A * if the character is not mirrored or is not defined.
0N/A * @since 1.5
0N/A */
0N/A public static boolean isMirrored(int codePoint) {
0N/A return CharacterData.of(codePoint).isMirrored(codePoint);
0N/A }
0N/A
0N/A /**
3827N/A * Compares two {@code Character} objects numerically.
3827N/A *
3827N/A * @param anotherCharacter the {@code Character} to be compared.
3827N/A
3827N/A * @return the value {@code 0} if the argument {@code Character}
3827N/A * is equal to this {@code Character}; a value less than
3827N/A * {@code 0} if this {@code Character} is numerically less
3827N/A * than the {@code Character} argument; and a value greater than
3827N/A * {@code 0} if this {@code Character} is numerically greater
3827N/A * than the {@code Character} argument (unsigned comparison).
0N/A * Note that this is strictly a numerical comparison; it is not
0N/A * locale-dependent.
0N/A * @since 1.2
0N/A */
0N/A public int compareTo(Character anotherCharacter) {
1701N/A return compare(this.value, anotherCharacter.value);
1701N/A }
1701N/A
1701N/A /**
1701N/A * Compares two {@code char} values numerically.
1701N/A * The value returned is identical to what would be returned by:
1701N/A * <pre>
1701N/A * Character.valueOf(x).compareTo(Character.valueOf(y))
1701N/A * </pre>
1701N/A *
1701N/A * @param x the first {@code char} to compare
1701N/A * @param y the second {@code char} to compare
1701N/A * @return the value {@code 0} if {@code x == y};
1701N/A * a value less than {@code 0} if {@code x < y}; and
1701N/A * a value greater than {@code 0} if {@code x > y}
1701N/A * @since 1.7
1701N/A */
1701N/A public static int compare(char x, char y) {
1701N/A return x - y;
0N/A }
0N/A
0N/A /**
0N/A * Converts the character (Unicode code point) argument to uppercase using
0N/A * information from the UnicodeData file.
0N/A * <p>
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be converted.
0N/A * @return either the uppercase equivalent of the character, if
3827N/A * any, or an error flag ({@code Character.ERROR})
3827N/A * that indicates that a 1:M {@code char} mapping exists.
2566N/A * @see Character#isLowerCase(char)
2566N/A * @see Character#isUpperCase(char)
2566N/A * @see Character#toLowerCase(char)
2566N/A * @see Character#toTitleCase(char)
0N/A * @since 1.4
0N/A */
0N/A static int toUpperCaseEx(int codePoint) {
0N/A assert isValidCodePoint(codePoint);
0N/A return CharacterData.of(codePoint).toUpperCaseEx(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * Converts the character (Unicode code point) argument to uppercase using case
0N/A * mapping information from the SpecialCasing file in the Unicode
0N/A * specification. If a character has no explicit uppercase
3827N/A * mapping, then the {@code char} itself is returned in the
3827N/A * {@code char[]}.
0N/A *
0N/A * @param codePoint the character (Unicode code point) to be converted.
3827N/A * @return a {@code char[]} with the uppercased character.
0N/A * @since 1.4
0N/A */
0N/A static char[] toUpperCaseCharArray(int codePoint) {
4138N/A // As of Unicode 6.0, 1:M uppercasings only happen in the BMP.
2562N/A assert isBmpCodePoint(codePoint);
0N/A return CharacterData.of(codePoint).toUpperCaseCharArray(codePoint);
0N/A }
0N/A
0N/A /**
0N/A * The number of bits used to represent a <tt>char</tt> value in unsigned
1602N/A * binary form, constant {@code 16}.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A public static final int SIZE = 16;
0N/A
0N/A /**
0N/A * Returns the value obtained by reversing the order of the bytes in the
0N/A * specified <tt>char</tt> value.
0N/A *
0N/A * @return the value obtained by reversing (or, equivalently, swapping)
0N/A * the bytes in the specified <tt>char</tt> value.
0N/A * @since 1.5
0N/A */
0N/A public static char reverseBytes(char ch) {
0N/A return (char) (((ch & 0xFF00) >> 8) | (ch << 8));
0N/A }
2401N/A
2401N/A /**
2401N/A * Returns the Unicode name of the specified character
3827N/A * {@code codePoint}, or null if the code point is
2401N/A * {@link #UNASSIGNED unassigned}.
2401N/A * <p>
2401N/A * Note: if the specified character is not assigned a name by
2401N/A * the <i>UnicodeData</i> file (part of the Unicode Character
2401N/A * Database maintained by the Unicode Consortium), the returned
4138N/A * name is the same as the result of expression.
2401N/A *
3827N/A * <blockquote>{@code
3827N/A * Character.UnicodeBlock.of(codePoint).toString().replace('_', ' ')
2401N/A * + " "
2401N/A * + Integer.toHexString(codePoint).toUpperCase(Locale.ENGLISH);
2401N/A *
3827N/A * }</blockquote>
2401N/A *
2401N/A * @param codePoint the character (Unicode code point)
2401N/A *
2401N/A * @return the Unicode name of the specified character, or null if
2401N/A * the code point is unassigned.
2401N/A *
2401N/A * @exception IllegalArgumentException if the specified
3827N/A * {@code codePoint} is not a valid Unicode
2401N/A * code point.
2401N/A *
2401N/A * @since 1.7
2401N/A */
2401N/A public static String getName(int codePoint) {
2401N/A if (!isValidCodePoint(codePoint)) {
2401N/A throw new IllegalArgumentException();
2401N/A }
2401N/A String name = CharacterName.get(codePoint);
2401N/A if (name != null)
2401N/A return name;
2401N/A if (getType(codePoint) == UNASSIGNED)
2401N/A return null;
2401N/A UnicodeBlock block = UnicodeBlock.of(codePoint);
2401N/A if (block != null)
2401N/A return block.toString().replace('_', ' ') + " "
2401N/A + Integer.toHexString(codePoint).toUpperCase(Locale.ENGLISH);
2401N/A // should never come here
2401N/A return Integer.toHexString(codePoint).toUpperCase(Locale.ENGLISH);
2401N/A }
0N/A}