Here you can find the source of toString(TimeZone timezone)
Parameter | Description |
---|---|
timezone | a parameter |
public static String toString(TimeZone timezone)
//package com.java2s; //License from project: LGPL import java.util.TimeZone; public class Main { /**/*from www . java2 s . c o m*/ * return the string format of the Timezone * @param timezone * @return */ public static String toString(TimeZone timezone) { return timezone.getID(); } }