
- Java.util - Home
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util - Interfaces
- Java.util - Exceptions
- Java.util - Enumerations
- Java.util Useful Resources
- Java.util - Useful Resources
- Java.util - Discussion
Java Locale getDisplayVariant() Method
Description
The Java Locale getDisplayVariant() method returns locale's variant code that is appropriate for display to the user. If possible, the name will be localized for the default DISPLAY locale. It returns the empty string if this locale doesn't specify a variant code.
Declaration
Following is the declaration for java.util.Locale.getDisplayVariant() method
public final String getDisplayVariant()
Parameters
NA
Return Value
This method returns the variant code of locale for the current default DISPLAY locale.
Exception
NA
Java Locale getDisplayVariant(Locale inLocale) Method
Description
The Java Locale getDisplayVariant(Locale inLocale) method returns locale's variant code that is appropriate for display to the user. If possible, the name will be localized for the given locale. It returns the empty string if this locale doesn't specify a variant code.
Declaration
Following is the declaration for java.util.Locale.getDisplayVariant() method
public String getDisplayVariant(Locale inLocale)
Parameters
NA
Return Value
This method returns the variant code for the current default DISPLAY locale.
Exception
NullPointerException − if inLocale is null
Getting Display Variant for US Locale Example
The following example shows the usage of Java Locale getDisplayVariant() methods. We're creating a locale of US and then Variant Code are retrieved without using any locale and printed.
package com.tutorialspoint; import java.util.Locale; public class LocaleDemo { public static void main(String[] args) { // create a new locale Locale locale = new Locale("en", "US", "WIN"); // print this locale System.out.println("Locale:" + locale); // print the variant code of this locale System.out.println("Variant Code:" + locale.getDisplayVariant()); } }
Output
Let us compile and run the above program, this will produce the following result −
Locale:en_US_WIN Variant Code:WIN Variant Code:WIN
Getting Display Variant for Germany Locale Example
The following example shows the usage of Java Locale getDisplayVariant(Locale) methods. We're creating a locale of US and then Variant Code are retrieved using German Locale and without using any locale and printed.
package com.tutorialspoint; import java.util.Locale; public class LocaleDemo { public static void main(String[] args) { // create a new locale Locale locale = new Locale("en", "US", "WIN"); // print this locale System.out.println("Locale:" + locale); // print the variant code of this locale System.out.println("Variant Code:" + locale.getDisplayVariant()); System.out.println("Variant Code:" + locale.getDisplayVariant(Locale.GERMANY)); } }
Output
Let us compile and run the above program, this will produce the following result −
Locale:en_US_WIN Variant Code:WIN Variant Code:WIN