Constants |
NONE |
|
ONE_TO_ONE |
A transliteration module is ONE_TO_ONE if and only if it's
mapping between characters is one to one like a-z to A-Z.
Transliteration modules of this type can be used as choice in
regular expressions based search/replace. |
NUMERIC |
A transliteration module can have attribute NUMERIC if it
transliterates numbers in different languages like Chinese
numbers to Arabic numbers and vice versa. This mapping need not
be one to one, it should be primarily used by number formatting
and parsing methods. |
ONE_TO_ONE_NUMERIC |
A transliteration module is ONE_TO_ONE_NUMERIC if it offers
both one to one mapping and handles number also. |
IGNORE |
With a transliteration IGNORE case, the regular
expression A-Z can be transformed to a-z, for example. |
CASCADE |
If the transliteration is cascaded (uses more than one
algorithm). |
Constants' Details |
NONE
|
ONE_TO_ONE
const short ONE_TO_ONE = 1;
- Description
- A transliteration module is ONE_TO_ONE if and only if it's
mapping between characters is one to one like a-z to A-Z.
Transliteration modules of this type can be used as choice in
regular expressions based search/replace.
|
|
NUMERIC
const short NUMERIC = 2;
- Description
- A transliteration module can have attribute NUMERIC if it
transliterates numbers in different languages like Chinese
numbers to Arabic numbers and vice versa. This mapping need not
be one to one, it should be primarily used by number formatting
and parsing methods.
|
|
ONE_TO_ONE_NUMERIC
const short ONE_TO_ONE_NUMERIC = 3;
- Description
- A transliteration module is ONE_TO_ONE_NUMERIC if it offers
both one to one mapping and handles number also.
|
|
IGNORE
const short IGNORE = 4;
- Description
- With a transliteration IGNORE case, the regular
expression A-Z can be transformed to a-z, for example.
|
|
CASCADE
const short CASCADE = 8;
- Description
- If the transliteration is cascaded (uses more than one
algorithm).
|
|
Top of Page
Copyright © 2000, 2012 LibreOffice contributors and/or their affiliates. All rights reserved.
LibreOffice was created by The Document Foundation, based on OpenOffice.org, which is Copyright 2000, 2010 Oracle and/or its affiliates.
The Document Foundation acknowledges all community members, please find more info at our website.
Privacy Policy | Impressum (Legal Info) | Copyright information: The source code of LibreOffice is licensed under the GNU Lesser General Public License (LGPLv3). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.