Java Locale.getDisplayVariant()

Syntax

Locale.getDisplayVariant() has the following syntax.

public final String getDisplayVariant()

Example

In the following code shows how to use Locale.getDisplayVariant() method.


//from   w  ww .j  a  v a 2  s  .c  om
import java.util.Locale;

public class Main {

   public static void main(String[] args) {
      Locale locale = new Locale("ENGLISH", "US", "WIN");

      System.out.println("Locale:" + locale);

      // print display variant for locale - based on inLocale
      System.out.println("Variant:" + locale.getDisplayVariant());

   }
}

The code above generates the following result.