Java Utililty Methods TimeZone to String

List of utility methods to do TimeZone to String

Description

The list of methods to do TimeZone to String are organized into topic(s).

Method

StringtoString(TimeZone timezone)
return the string format of the Timezone
return timezone.getID();
StringtoString(TimeZone tz)
Returns the timezone as string.
String result;
result = tz.getID();
if (result.equals(TimeZone.getDefault().getID()))
    result = DEFAULT_TIMEZONE;
return result;