Open In App

Locale getDisplayVariant() Method in Java with Examples

Last Updated : 27 Dec, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The getDisplayVariant() method of Locale class in Java is used to get the name for the locale's variant code mentioned in the specified locale and is appropriately displayed to the user. If the variant code is not mentioned in the locale the function returns an empty string. Syntax:
LOCALE.getDisplayVariant()
Parameters: This method does not take any parameters. Return Value: This method returns the name of the display variant code appropriate to the locale. Below programs illustrate the working of getDisplayVariant() method: Program 1: Java
// Java code to illustrate getDisplayVariant() method

import java.util.*;

public class Locale_Demo {
    public static void main(String[] args)
    {

        // Creating a new locale
        Locale first_locale
            = new Locale("th", "TH", "TH");

        // Displaying first locale
        System.out.println("First Locale: "
                           + first_locale);

        // Displaying the variant code for locale
        System.out.println("Variant: "
                           + first_locale.getDisplayVariant());
    }
}
Output:
First Locale: th_TH_TH_#u-nu-thai
Variant: TH
Program 2: Java
// Java code to illustrate getDisplayVariant() method

import java.util.*;

public class Locale_Demo {
    public static void main(String[] args)
    {

        // Creating a new locale
        Locale first_locale
            = new Locale("en", "IN");

        // Displaying first locale
        System.out.println("First Locale: "
                           + first_locale);

        // Displaying the variant code for locale
        System.out.println("Variant: "
                           + first_locale.getDisplayVariant());
    }
}
Output:
First Locale: en_IN
Variant:

Next Article
Practice Tags :

Similar Reads