:: com :: sun :: star :: i18n ::

deprecated constants group LocaleItem
Usage Restrictions
deprecated
Deprecation Info
internal Constant values identifying specific locale data items.

These are not used with the API but with an OOo internal wrapper class that caches the contents of an instance of LocaleDataItem and uses these values to access it's members for faster access.

Whenever locale data items were added these values and the wrapper class would have to be adjusted to give the application an easier access.


Constants
DATE_SEPARATOR  
THOUSAND_SEPARATOR  
DECIMAL_SEPARATOR  
TIME_SEPARATOR  
TIME_100SEC_SEPARATOR  
LIST_SEPARATOR  
SINGLE_QUOTATION_START  
SINGLE_QUOTATION_END  
DOUBLE_QUOTATION_START  
DOUBLE_QUOTATION_END  
MEASUREMENT_SYSTEM  
TIME_AM  
TIME_PM  
LONG_DATE_DAY_OF_WEEK_SEPARATOR  
LONG_DATE_DAY_SEPARATOR  
LONG_DATE_MONTH_SEPARATOR  
LONG_DATE_YEAR_SEPARATOR  
COUNT count of items available 
Constants' Details
DATE_SEPARATOR
const short DATE_SEPARATOR = 0;
THOUSAND_SEPARATOR
const short THOUSAND_SEPARATOR = 1;
DECIMAL_SEPARATOR
const short DECIMAL_SEPARATOR = 2;
TIME_SEPARATOR
const short TIME_SEPARATOR = 3;
TIME_100SEC_SEPARATOR
const short TIME_100SEC_SEPARATOR = 4;
LIST_SEPARATOR
const short LIST_SEPARATOR = 5;
SINGLE_QUOTATION_START
const short SINGLE_QUOTATION_START = 6;
SINGLE_QUOTATION_END
const short SINGLE_QUOTATION_END = 7;
DOUBLE_QUOTATION_START
const short DOUBLE_QUOTATION_START = 8;
DOUBLE_QUOTATION_END
const short DOUBLE_QUOTATION_END = 9;
MEASUREMENT_SYSTEM
const short MEASUREMENT_SYSTEM = 10;
TIME_AM
const short TIME_AM = 11;
TIME_PM
const short TIME_PM = 12;
LONG_DATE_DAY_OF_WEEK_SEPARATOR
const short LONG_DATE_DAY_OF_WEEK_SEPARATOR = 13;
LONG_DATE_DAY_SEPARATOR
const short LONG_DATE_DAY_SEPARATOR = 14;
LONG_DATE_MONTH_SEPARATOR
const short LONG_DATE_MONTH_SEPARATOR = 15;
LONG_DATE_YEAR_SEPARATOR
const short LONG_DATE_YEAR_SEPARATOR = 16;
COUNT
const short COUNT = 17;
Description
count of items available
Top of Page