01: /**
02: *******************************************************************************
03: * Copyright (C) 1996-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */package com.ibm.icu.impl;
07:
08: /**
09: * Internal class containing selector constants for the unicode character names.
10: * Constants representing the "modern" name of a Unicode character or the name
11: * that was defined in Unicode version 1.0, before the Unicode standard
12: * merged with ISO-10646.
13: * Arguments for <a href=UCharacterName.html>UCharacterName</a>
14: * @author Syn Wee Quek
15: * @since oct0600
16: */
17:
18: public interface UCharacterNameChoice {
19: // public variables =============================================
20:
21: static final int UNICODE_CHAR_NAME = 0;
22: static final int UNICODE_10_CHAR_NAME = 1;
23: static final int EXTENDED_CHAR_NAME = 2;
24: static final int CHAR_NAME_CHOICE_COUNT = 3;
25: static final int ISO_COMMENT_ = CHAR_NAME_CHOICE_COUNT;
26: }
|