StringCodingTypes - String coding types
String coding types describes different coding formats that might be used, when exchanging text data in odaba::String objects. String coding types are also used for recoding string values.
Enumarators overview
- ASCIIString
(1) - ASCII String Coding
- Latin1String
(2) - Latin1 String Coding
- Local8BitString
(3) - Local 8 bit String Coding
- UTF16String
(10) - UTF16 String Coding
- UTF32String
(11) - UTF32 String Coding
- UTF8String
(12) - UTF8 String Coding
Enumerator details
-
ASCIIString - ASCII String Coding
An odaba::String of this coding type contains only ASCII code point values.
Code: 1
to list -
Latin1String - Latin1 String Coding
An odaba::String of this coding type contains only Latin1 code point values.
Code: 2
to list -
Local8BitString - Local 8 bit String Coding
An odaba::String of this coding type contains code point values of the current local 8 bit code page.
This coding type is the default for C++ and OSI interface.
Code: 3
to list -
UTF16String - UTF16 String Coding
An odaba::String of this coding type contains 16 bit unicode code point values.
This coding type is the default for .NET interface.
Code: 10
to list -
UTF32String - UTF32 String Coding
An odaba::String of this coding type contains 32 bit unicode code point values.
Code: 11
to list -
UTF8String - UTF8 String Coding
An odaba::String of this coding type contains 8 bit unicodecode point values.
Code: 12
to list