Locale.getDisplayVariant() has the following syntax.
public final String getDisplayVariant()
In the following code shows how to use Locale.getDisplayVariant() method.
/* w ww. j a v a2 s . c o m*/ 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.