getTimezonesUtility

From AgileApps Support Wiki
Revision as of 01:31, 10 September 2013 by imported>Aeric
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Functions.getTimezonesUtility()
Description
Retrieves the list of time zones via the Java API
Syntax
Map<String, TimeZoneBean> m = Functions.getTimezonesUtility();
Return
Map<String, TimeZoneBean>
Example
Retrieve a list of all timezones
Learn more: Time Zone Codes
Logger.info("Retrieve time zone list", "TimeZones");
Map<String, TimeZoneBean> timezoneCollection = Functions.getTimezonesUtility(); 
for(Map.Entry e : timezoneCollection.entrySet())
{
    TimeZoneBean tz = e.getValue();
    Logger.info("code: "+ tz.getId() + "; value: "+ tz.getJavaValue() 
        + "; user friendly value: "+ tz.getUserFriendlyValue(), "TimeZones");
}