Package java.util
Class Locale

Public Method toString

final String toString()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns the entire locale, with the language, country, and variant.

Example

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

The example above returns the string representation of this Locale object.