Package java.util
Class Locale

Public Method getDisplayName

final String getDisplayName()

String getDisplayName(Locale inLocale)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

getDisplayName() method:

Returns a whole name for the locale's that is appropriate for display to the user.

getDisplayName(Locale inLocale) method:

Returns a whole name for the locale's that is apporpriate for display to the user.

Example

   Locale loc = new Locale("de","AT","vienna");
   Logger.log("" + loc.getDisplayName());

The getDisplayName method returns the specified name with the language, country, and variant in one string.