Description:
Following copy from the class java.lang.Object.
Example
Locale loc1 = Locale.GERMAN;
Locale loc2 = (Locale)loc1.clone();
Logger.log(loc1.toString());
Logger.log(loc2.toString());
The example above copies the data from loc1 to the loc2 object.