LibreOffice
LibreOffice 24.2 SDK API Reference
|
Bitmask transliteration types used with XTransliteration::getType() and XTransliteration::getAvailableModules() methods. More...
Variables | |
const short | NONE = 0 |
const short | ONE_TO_ONE = 1 |
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. More... | |
const short | NUMERIC = 2 |
A transliteration module can have attribute NUMERIC if it transliterates numbers in different languages like Chinese numbers to Arabic numbers and vice versa. More... | |
const short | ONE_TO_ONE_NUMERIC = 3 |
A transliteration module is ONE_TO_ONE_NUMERIC if it offers both one to one mapping and handles number also. More... | |
const short | IGNORE = 4 |
With a transliteration IGNORE case, the regular expression A-Z can be transformed to a-z, for example. More... | |
const short | CASCADE = 8 |
If the transliteration is cascaded (uses more than one algorithm). More... | |
Bitmask transliteration types used with XTransliteration::getType() and XTransliteration::getAvailableModules() methods.
Non-IGNORE type modules provide XTransliteration::transliterate().
IGNORE type modules provide XTransliteration::equals() and XTransliteration::transliterateRange().
const short CASCADE = 8 |
If the transliteration is cascaded (uses more than one algorithm).
const short IGNORE = 4 |
With a transliteration IGNORE case, the regular expression A-Z can be transformed to a-z, for example.
const short NONE = 0 |
const short NUMERIC = 2 |
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.
const short ONE_TO_ONE = 1 |
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.
const short ONE_TO_ONE_NUMERIC = 3 |
A transliteration module is ONE_TO_ONE_NUMERIC if it offers both one to one mapping and handles number also.