Overview | Namespace | Class | Index | Help |
PUBLIC MEMBERS: | CLASSES | STRUCTS | UNIONS | ENUMS | TYPEDEFS | METHODS | STATIC METHODS | DATA | STATIC DATA |
PRIVATE MEMBERS: | CLASSES | STRUCTS | UNIONS | ENUMS | TYPEDEFS | METHODS | STATIC METHODS | DATA | STATIC DATA |
:: rtl ::
class OLocale
- Base Classes
- None.
- Known Derived Classes
- None.
virtual | abstract | interface | template |
NO | NO | NO | NO |
- Description
- A
OLocale
object represents a specific geographical, political, or cultural region. An operation that requires aOLocale
to perform its task is called locale-sensitive and uses theOLocale
to tailor information for the user. For example, displaying a number is a locale-sensitive operation--the number should be formatted according to the customs/conventions of the user's native country, region, or culture.You create a
OLocale
object using one of the two constructors in this class:OLocale(String language, String country) OLocale(String language, String country, String variant)
http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt
The second argument to both constructors is a valid ISO Country Code. These codes are the upper-case two-letter codes as defined by ISO-3166. You can find a full list of these codes at a number of sites, such as:
http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html
The second constructor requires a third argument--the Variant. The Variant codes are vendor and browser-specific. For example, use WIN for Windows, MAC for Macintosh, and POSIX for POSIX. Where there are two variants, separate them with an underscore, and put the most important one first. For example, a Traditional Spanish collation might be referenced, with "ES", "ES", "Traditional_WIN".
Because a
OLocale
object is just an identifier for a region, no validity check is performed when you construct aOLocale
. If you want to see whether particular resources are available for theOLocale
you construct, you must query those resources. For example, ask theNumberFormat
for the locales it supports using itsgetAvailableLocales
method.
Note: When you ask for a resource for a particular locale, you get back the best available match, not necessarily precisely what you asked for. For more information, look atResourceBundle
.The
OLocale
class provides a number of convenient constants that you can use to createOLocale
objects for commonly used locales. For example, the following creates aOLocale
object for the United States:OLocale.US
Once you've created a
OLocale
you can query it for information about itself. UsegetCountry
to get the ISO Country Code andgetLanguage
to get the ISO Language Code. You can usegetDisplayCountry
to get the name of the country suitable for displaying to the user. Similarly, you can usegetDisplayLanguage
to get the name of the language suitable for displaying to the user. Interestingly, thegetDisplayXXX
methods are themselves locale-sensitive and have two versions: one that uses the default locale and one that uses the locale specified as an argument.The JDK provides a number of classes that perform locale-sensitive operations. For example, the
NumberFormat
class formats numbers, currency, or percentages in a locale-sensitive manner. Classes such asNumberFormat
have a number of convenience methods for creating a default object of that type. For example, theNumberFormat
class provides these three convenience methods for creating a defaultNumberFormat
object:NumberFormat.getInstance() NumberFormat.getCurrencyInstance() NumberFormat.getPercentInstance()
NumberFormat.getInstance(myLocale) NumberFormat.getCurrencyInstance(myLocale) NumberFormat.getPercentInstance(myLocale)
OLocale
is the mechanism for identifying the kind of object (NumberFormat
) that you would like to get. The locale is just a mechanism for identifying objects, not a container for the objects themselves.Each class that performs locale-sensitive operations allows you to get all the available objects of that type. You can sift through these objects by language, country, or variant, and use the display names to present a menu to the user. For example, you can create a menu of all the collation objects suitable for a given language. Such classes must implement these three class methods:
public static OLocale[] getAvailableLocales() public static String getDisplayName(OLocale objectLocale, OLocale displayLocale) public static final String getDisplayName(OLocale objectLocale) // getDisplayName will throw MissingResourceException if the locale // is not one of the available locales.
- File
- locale.hxx
Public Members
-
Methods
OLocale( rtl_Locale * locale );
OLocale( const OLocale & obj );OLocale &
operator=( const OLocale & obj );OUString
getLanguage( ) const;Getter for programmatic name of field, an lowercased two-letter ISO-639 code. OUString
getCountry( ) const;Getter for programmatic name of field, an uppercased two-letter ISO-3166 code. OUString
getVariant( ) const;Getter for programmatic name of field. sal_Int32
hashCode( ) const;Returns the hash code of the locale This. sal_Bool
operator==( const OLocale & obj ) const;rtl_Locale *
getData( ) const;
Static Methods
static OLocale
registerLocale( const OUString & language, const OUString & country, const OUString & variant );Construct a locale from language, country, variant. static OLocale
registerLocale( const OUString & language, const OUString & country );Construct a locale from language, country. static OLocale
getDefault( );static void
setDefault( const OUString & language, const OUString & country, const OUString & variant );
Private Members
-
Methods
OLocale( );
Data
rtl_Locale * pData; Must be the first member in this class. OUString access this member with *(rtl_Locale **)&locale.
Copyright © 2012, The Apache Software Foundation, Licensed under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. Other names may be trademarks of their respective owners.