পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Thursday, January 19, 2017

Java.util.Locale Class

Introduction

The java.util.Locale class object represents a specific geographical, political, or cultural region. .Following are the important points about Locale:

  • An operation that requires a Locale to perform its task is called locale-sensitive and uses the Locale to form information for the user.
  • Locale is a mechanism for identifying objects, not a container for the objects themselves.

Class declaration

Following is the declaration for java.util.Locale class:
public final class Locale
   extends Object
   implements Cloneable, Serializable

Field

Following are the fields for java.util.Locale class:
  • static Locale CANADA -- This is the constant for country.
  • static Locale CANADA FRENCH -- This is the constant for country.
  • static Locale CHINA -- This is the constant for country.
  • static Locale CHINESE -- This is the constant for language.
  • static Locale ENGLISH -- This is the constant for language.
  • static Locale FRANCE -- This is the constant for country.
  • static Locale FRENCH -- This is the constant for language.
  • static Locale GERMAN -- This is the constant for language.
  • static Locale GERMANY -- This is the constant for country.
  • static Locale ITALIAN -- This is the constant for language.
  • static Locale ITALY -- This is the constant for country.
  • static Locale JAPAN -- This is the constant for country.
  • static Locale JAPANESE -- This is the constant for language.
  • static Locale KOREA -- This is the constant for country.
  • static Locale KOREAN -- This is the constant for language.
  • static Locale PRC -- This is the constant for country.
  • static Locale ROOT -- This is the constant for root locale.
  • static Locale SIMPLIFIED CHINESE -- This is the constant for language.
  • static Locale TAIWAN -- This is the constant for country.
  • static Locale TRADITIONAL CHINESE -- This is the constant for language.
  • static Locale UK -- This is the constant for country.
  • static Locale US -- This is the constant for country.

Class constructors

S.N. Constructor & Description
1 Locale(String language)
This constructs a locale from a language code.
2 Locale(String language, String country)
This constructs a locale from a language code.
3 Locale(String language, String country, String variant)
This constructs a locale from language, country, variant.

Class methods

S.N. Method & Description
1 Object clone()
This method overrides Cloneable
2 boolean equals(Object obj)
This method returns true if this Locale is equal to another object.
3 static Locale[] getAvailableLocales()
This method returns an array of all installed locales.
4 String getCountry()
This method returns the country/region code for this locale, which will either be the empty string or an uppercase ISO 3166 2-letter code.
5 static Locale getDefault()
This method gets the current value of the default locale for this instance of the Java Virtual Machine.
6 String getDisplayCountry()
This method returns a name for the locale's country that is appropriate for display to the user.
7 S String getDisplayCountry(Locale inLocale)
This method Returns a name for the locale's country that is appropriate for display to the user.
8 String getDisplayLanguage()
This method returns a name for the locale's language that is appropriate for display to the user.
9 String getDisplayLanguage(Locale inLocale)
This method returns a name for the locale's language that is appropriate for display to the user.
10 String getDisplayName()
This method returns a name for the locale that is appropriate for display to the user.
11 String getDisplayName(Locale inLocale)
This method returns a name for the locale that is appropriate for display to the user.
12 String getDisplayVariant()
This method returns a name for the locale's variant code that is appropriate for display to the user.
13 String getDisplayVariant(Locale inLocale)
This method returns a name for the locale's variant code that is appropriate for display to the user.
14 String getISO3Country()
This method returns a three-letter abbreviation for this locale's country.
15 String getISO3Language()
This method returns returns a three-letter abbreviation for this locale's language.
16 static String[] getISOCountries()
This method returns a list of all 2-letter country codes defined in ISO 3166.
17 static String[] getISOLanguages()
This method returns a list of all 2-letter language codes defined in ISO 639.
18 String getLanguage()
This method returns the language code for this locale, which will either be the empty string or a lowercase ISO 639 code.
19 String getVariant()
This method returns the variant code for this locale.
20 int hashCode()
This method override hashCode.
21 static void setDefault(Locale newLocale)
This method sets the default locale for this instance of the Java Virtual Machine.
22 String toString()
This method is the getter for the programmatic name of the entire locale, with the language, country and variant separated by underbars.

Methods inherited

This class inherits methods from the following classes:
  • java.util.Object

No comments:

Post a Comment