jdk/make/tools/GenerateCharacter/CharacterData00.java.template
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 2497 903fd9d785ef
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/** 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * The CharacterData00 class encapsulates the large tables once found in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * java.lang.Character
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
class CharacterData00 extends CharacterData {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
    /* The character properties are currently encoded into 32 bits in the following manner:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
        1 bit   mirrored property
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
        4 bits  directionality property
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
        9 bits  signed offset used for converting case
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
        1 bit   if 1, adding the signed offset converts the character to lowercase
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
        1 bit   if 1, subtracting the signed offset converts the character to uppercase
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        1 bit   if 1, this character has a titlecase equivalent (possibly itself)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        3 bits  0  may not be part of an identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
                1  ignorable control; may continue a Unicode identifier or Java identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
                2  may continue a Java identifier but not a Unicode identifier (unused)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
                3  may continue a Unicode identifier or Java identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
                4  is a Java whitespace character
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
                5  may start or continue a Java identifier;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
                   may continue but not start a Unicode identifier (underscores)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
                6  may start or continue a Java identifier but not a Unicode identifier ($)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
                7  may start or continue a Unicode identifier or Java identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
                Thus:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                   5, 6, 7 may start a Java identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
                   1, 2, 3, 5, 6, 7 may continue a Java identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                   7 may start a Unicode identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
                   1, 3, 5, 7 may continue a Unicode identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
                   1 is ignorable within an identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                   4 is Java whitespace
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        2 bits  0  this character has no numeric property
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                1  adding the digit offset to the character code and then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                   masking with 0x1F will produce the desired numeric value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                2  this character has a "strange" numeric value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                3  a Java supradecimal digit: adding the digit offset to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                   character code, then masking with 0x1F, then adding 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                   will produce the desired numeric value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        5 bits  digit offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        5 bits  character type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        The encoding of character properties is subject to change at any time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    int getProperties(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        char offset = (char)ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        int props = $$Lookup(offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        return props;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    int getType(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        int props = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        return (props & $$maskType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    boolean isJavaIdentifierStart(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        int props = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        return ((props & $$maskIdentifierInfo) >= $$lowJavaStart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    boolean isJavaIdentifierPart(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        int props = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        return ((props & $$nonzeroJavaPart) != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    boolean isUnicodeIdentifierStart(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        int props = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        return ((props & $$maskIdentifierInfo) == $$valueUnicodeStart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    boolean isUnicodeIdentifierPart(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        int props = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        return ((props & $$maskUnicodePart) != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    boolean isIdentifierIgnorable(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        int props = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        return ((props & $$maskIdentifierInfo) == $$valueIgnorable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    int toLowerCase(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        int mapChar = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        int val = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        if ((val & $$maskLowerCase) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
          if ((val & $$maskCaseOffset) == $$maskCaseOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            switch(ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
              // map the offset overflow chars
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
			case 0x0130 : mapChar = 0x0069; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            case 0x2126 : mapChar = 0x03C9; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            case 0x212A : mapChar = 0x006B; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            case 0x212B : mapChar = 0x00E5; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
              // map the titlecase chars with both a 1:M uppercase map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
              // and a lowercase map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            case 0x1F88 : mapChar = 0x1F80; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            case 0x1F89 : mapChar = 0x1F81; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            case 0x1F8A : mapChar = 0x1F82; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            case 0x1F8B : mapChar = 0x1F83; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            case 0x1F8C : mapChar = 0x1F84; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            case 0x1F8D : mapChar = 0x1F85; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            case 0x1F8E : mapChar = 0x1F86; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            case 0x1F8F : mapChar = 0x1F87; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            case 0x1F98 : mapChar = 0x1F90; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            case 0x1F99 : mapChar = 0x1F91; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            case 0x1F9A : mapChar = 0x1F92; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            case 0x1F9B : mapChar = 0x1F93; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            case 0x1F9C : mapChar = 0x1F94; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            case 0x1F9D : mapChar = 0x1F95; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            case 0x1F9E : mapChar = 0x1F96; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            case 0x1F9F : mapChar = 0x1F97; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            case 0x1FA8 : mapChar = 0x1FA0; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            case 0x1FA9 : mapChar = 0x1FA1; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            case 0x1FAA : mapChar = 0x1FA2; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            case 0x1FAB : mapChar = 0x1FA3; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            case 0x1FAC : mapChar = 0x1FA4; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            case 0x1FAD : mapChar = 0x1FA5; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            case 0x1FAE : mapChar = 0x1FA6; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            case 0x1FAF : mapChar = 0x1FA7; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            case 0x1FBC : mapChar = 0x1FB3; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            case 0x1FCC : mapChar = 0x1FC3; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            case 0x1FFC : mapChar = 0x1FF3; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
              // default mapChar is already set, so no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
              // need to redo it here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
              // default       : mapChar = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
          else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            int offset = val << $$shiftCaseOffsetSign >> ($$shiftCaseOffsetSign+$$shiftCaseOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            mapChar = ch + offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        return mapChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    int toUpperCase(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        int mapChar = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        int val = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        if ((val & $$maskUpperCase) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
          if ((val & $$maskCaseOffset) == $$maskCaseOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            switch(ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
              // map chars with overflow offsets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            case 0x00B5 : mapChar = 0x039C; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            case 0x017F : mapChar = 0x0053; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            case 0x1FBE : mapChar = 0x0399; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
              // map char that have both a 1:1 and 1:M map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            case 0x1F80 : mapChar = 0x1F88; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            case 0x1F81 : mapChar = 0x1F89; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            case 0x1F82 : mapChar = 0x1F8A; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            case 0x1F83 : mapChar = 0x1F8B; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            case 0x1F84 : mapChar = 0x1F8C; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            case 0x1F85 : mapChar = 0x1F8D; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            case 0x1F86 : mapChar = 0x1F8E; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            case 0x1F87 : mapChar = 0x1F8F; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            case 0x1F90 : mapChar = 0x1F98; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            case 0x1F91 : mapChar = 0x1F99; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            case 0x1F92 : mapChar = 0x1F9A; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            case 0x1F93 : mapChar = 0x1F9B; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            case 0x1F94 : mapChar = 0x1F9C; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            case 0x1F95 : mapChar = 0x1F9D; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            case 0x1F96 : mapChar = 0x1F9E; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            case 0x1F97 : mapChar = 0x1F9F; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            case 0x1FA0 : mapChar = 0x1FA8; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            case 0x1FA1 : mapChar = 0x1FA9; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            case 0x1FA2 : mapChar = 0x1FAA; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            case 0x1FA3 : mapChar = 0x1FAB; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            case 0x1FA4 : mapChar = 0x1FAC; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            case 0x1FA5 : mapChar = 0x1FAD; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            case 0x1FA6 : mapChar = 0x1FAE; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            case 0x1FA7 : mapChar = 0x1FAF; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            case 0x1FB3 : mapChar = 0x1FBC; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            case 0x1FC3 : mapChar = 0x1FCC; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            case 0x1FF3 : mapChar = 0x1FFC; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
              // ch must have a 1:M case mapping, but we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
              // can't handle it here. Return ch.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
              // since mapChar is already set, no need
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
              // to redo it here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
              //default       : mapChar = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
          else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            int offset = val  << $$shiftCaseOffsetSign >> ($$shiftCaseOffsetSign+$$shiftCaseOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
            mapChar =  ch - offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        return mapChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    int toTitleCase(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        int mapChar = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        int val = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        if ((val & $$maskTitleCase) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            // There is a titlecase equivalent.  Perform further checks:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            if ((val & $$maskUpperCase) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                // The character does not have an uppercase equivalent, so it must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                // already be uppercase; so add 1 to get the titlecase form.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                mapChar = ch + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            else if ((val & $$maskLowerCase) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                // The character does not have a lowercase equivalent, so it must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                // already be lowercase; so subtract 1 to get the titlecase form.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                mapChar = ch - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            // else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            // The character has both an uppercase equivalent and a lowercase
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            // equivalent, so it must itself be a titlecase form; return it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            // return ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            //}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        else if ((val & $$maskUpperCase) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            // This character has no titlecase equivalent but it does have an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            // uppercase equivalent, so use that (subtract the signed case offset).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            mapChar = toUpperCase(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        return mapChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    int digit(int ch, int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        int value = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        if (radix >= Character.MIN_RADIX && radix <= Character.MAX_RADIX) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            int val = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            int kind = val & $$maskType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            if (kind == Character.DECIMAL_DIGIT_NUMBER) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                value = ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            else if ((val & $$maskNumericType) == $$valueJavaSupradecimal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                // Java supradecimal digit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                value = (ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit) + 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        return (value < radix) ? value : -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    int getNumericValue(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        int val = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        int retval = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        switch (val & $$maskNumericType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        default: // cannot occur
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        case ($$valueNotNumeric):         // not numeric
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            retval = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        case ($$valueDigit):              // simple numeric
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
            retval = ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        case ($$valueStrangeNumeric)      :       // "strange" numeric
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            switch (ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                case 0x0BF1: retval = 100; break;         // TAMIL NUMBER ONE HUNDRED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                case 0x0BF2: retval = 1000; break;        // TAMIL NUMBER ONE THOUSAND
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                case 0x1375: retval = 40; break;          // ETHIOPIC NUMBER FORTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                case 0x1376: retval = 50; break;          // ETHIOPIC NUMBER FIFTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                case 0x1377: retval = 60; break;          // ETHIOPIC NUMBER SIXTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                case 0x1378: retval = 70; break;          // ETHIOPIC NUMBER SEVENTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                case 0x1379: retval = 80; break;          // ETHIOPIC NUMBER EIGHTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                case 0x137A: retval = 90; break;          // ETHIOPIC NUMBER NINETY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                case 0x137B: retval = 100; break;         // ETHIOPIC NUMBER HUNDRED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                case 0x137C: retval = 10000; break;       // ETHIOPIC NUMBER TEN THOUSAND
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                case 0x215F: retval = 1; break;           // FRACTION NUMERATOR ONE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                case 0x216C: retval = 50; break;          // ROMAN NUMERAL FIFTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                case 0x216D: retval = 100; break;         // ROMAN NUMERAL ONE HUNDRED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                case 0x216E: retval = 500; break;         // ROMAN NUMERAL FIVE HUNDRED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                case 0x216F: retval = 1000; break;        // ROMAN NUMERAL ONE THOUSAND
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                case 0x217C: retval = 50; break;          // SMALL ROMAN NUMERAL FIFTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                case 0x217D: retval = 100; break;         // SMALL ROMAN NUMERAL ONE HUNDRED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                case 0x217E: retval = 500; break;         // SMALL ROMAN NUMERAL FIVE HUNDRED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                case 0x217F: retval = 1000; break;        // SMALL ROMAN NUMERAL ONE THOUSAND
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                case 0x2180: retval = 1000; break;        // ROMAN NUMERAL ONE THOUSAND C D
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                case 0x2181: retval = 5000; break;        // ROMAN NUMERAL FIVE THOUSAND
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                case 0x2182: retval = 10000; break;       // ROMAN NUMERAL TEN THOUSAND
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                case 0x325C: retval = 32; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                case 0x325D: retval = 33; break;          // CIRCLED NUMBER THIRTY THREE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                case 0x325E: retval = 34; break;          // CIRCLED NUMBER THIRTY FOUR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                case 0x325F: retval = 35; break;          // CIRCLED NUMBER THIRTY FIVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                case 0x32B1: retval = 36; break;          // CIRCLED NUMBER THIRTY SIX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                case 0x32B2: retval = 37; break;          // CIRCLED NUMBER THIRTY SEVEN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
                case 0x32B3: retval = 38; break;          // CIRCLED NUMBER THIRTY EIGHT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                case 0x32B4: retval = 39; break;          // CIRCLED NUMBER THIRTY NINE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                case 0x32B5: retval = 40; break;          // CIRCLED NUMBER FORTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                case 0x32B6: retval = 41; break;          // CIRCLED NUMBER FORTY ONE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                case 0x32B7: retval = 42; break;          // CIRCLED NUMBER FORTY TWO
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                case 0x32B8: retval = 43; break;          // CIRCLED NUMBER FORTY THREE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                case 0x32B9: retval = 44; break;          // CIRCLED NUMBER FORTY FOUR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                case 0x32BA: retval = 45; break;          // CIRCLED NUMBER FORTY FIVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                case 0x32BB: retval = 46; break;          // CIRCLED NUMBER FORTY SIX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
                case 0x32BC: retval = 47; break;          // CIRCLED NUMBER FORTY SEVEN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                case 0x32BD: retval = 48; break;          // CIRCLED NUMBER FORTY EIGHT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
                case 0x32BE: retval = 49; break;          // CIRCLED NUMBER FORTY NINE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                case 0x32BF: retval = 50; break;          // CIRCLED NUMBER FIFTY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                default:       retval = -2; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        case ($$valueJavaSupradecimal):           // Java supradecimal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            retval = (ch + ((val & $$maskDigitOffset) >> $$shiftDigitOffset) & $$maskDigit) + 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        return retval;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    boolean isWhitespace(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        int props = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        return ((props & $$maskIdentifierInfo) == $$valueJavaWhitespace);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    byte getDirectionality(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        int val = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        byte directionality = (byte)((val & $$maskBidi) >> $$shiftBidi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        if (directionality == 0xF ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            switch(ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                case 0x202A :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                    // This is the only char with LRE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                    directionality = Character.DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                case 0x202B :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                    // This is the only char with RLE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                    directionality = Character.DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
                case 0x202C :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
                    // This is the only char with PDF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
                    directionality = Character.DIRECTIONALITY_POP_DIRECTIONAL_FORMAT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
                case 0x202D :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
                    // This is the only char with LRO
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
                    directionality = Character.DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                case 0x202E :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                    // This is the only char with RLO
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
                    directionality = Character.DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                default :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                    directionality = Character.DIRECTIONALITY_UNDEFINED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        return directionality;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    boolean isMirrored(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        int props = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        return ((props & $$maskMirrored) != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    int toUpperCaseEx(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        int mapChar = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        int val = getProperties(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        if ((val & $$maskUpperCase) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
            if ((val & $$maskCaseOffset) != $$maskCaseOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
                int offset = val  << $$shiftCaseOffsetSign >> ($$shiftCaseOffsetSign+$$shiftCaseOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
                mapChar =  ch - offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
            else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                switch(ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                    // map overflow characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
                    case 0x00B5 : mapChar = 0x039C; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                    case 0x017F : mapChar = 0x0053; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                    case 0x1FBE : mapChar = 0x0399; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
                    default       : mapChar = Character.ERROR; break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        return mapChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    char[] toUpperCaseCharArray(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        char[] upperMap = {(char)ch};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        int location = findInCharMap(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        if (location != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            upperMap = charMap[location][1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        return upperMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * Finds the character in the uppercase mapping table.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * @param ch the <code>char</code> to search
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * @return the index location ch in the table or -1 if not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     int findInCharMap(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        if (charMap == null || charMap.length == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        int top, bottom, current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        bottom = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        top = charMap.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        current = top/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        // invariant: top > current >= bottom && ch >= CharacterData.charMap[bottom][0]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        while (top - bottom > 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            if (ch >= charMap[current][0][0]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
                bottom = current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                top = current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
            current = (top + bottom) / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        if (ch == charMap[current][0][0]) return current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        else return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    static final CharacterData00 instance = new CharacterData00();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    private CharacterData00() {};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    $$Tables
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        $$Initializers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    }        
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
}