]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_4_2-src/main/classes/core/src/com/ibm/icu/impl/UCharacterNameChoice.java
go
[Dictionary.git] / jars / icu4j-4_4_2-src / main / classes / core / src / com / ibm / icu / impl / UCharacterNameChoice.java
1 /**\r
2 *******************************************************************************\r
3 * Copyright (C) 1996-2010, International Business Machines Corporation and    *\r
4 * others. All Rights Reserved.                                                *\r
5 *******************************************************************************\r
6 */\r
7 \r
8 package com.ibm.icu.impl;\r
9 \r
10 /**\r
11 * Internal class containing selector constants for the unicode character names.\r
12 * Constants representing the "modern" name of a Unicode character or the name \r
13 * that was defined in Unicode version 1.0, before the Unicode standard \r
14 * merged with ISO-10646.\r
15 * Arguments for <a href=UCharacterName.html>UCharacterName</a>\r
16 * @author Syn Wee Quek\r
17 * @since oct0600\r
18 */\r
19 \r
20 public interface UCharacterNameChoice\r
21 {\r
22   // public variables =============================================\r
23   \r
24   static final int UNICODE_CHAR_NAME = 0;\r
25   static final int UNICODE_10_CHAR_NAME = 1;\r
26   static final int EXTENDED_CHAR_NAME = 2;\r
27   /* Corrected name from NameAliases.txt. */\r
28   static final int CHAR_NAME_ALIAS = 3;\r
29   static final int CHAR_NAME_CHOICE_COUNT = 4;\r
30   static final int ISO_COMMENT_ = CHAR_NAME_CHOICE_COUNT;\r
31 }\r