List of utility methods to do TimeZone to String
String | toString(TimeZone timezone) return the string format of the Timezone return timezone.getID();
|
String | toString(TimeZone tz) Returns the timezone as string. String result; result = tz.getID(); if (result.equals(TimeZone.getDefault().getID())) result = DEFAULT_TIMEZONE; return result; |