SimpleTimeZone clone() method in Java with Examples

The clone() method of SimpleTimeZone class returns a clone of this SimpleTimeZone instance.
Syntax:
public Object clone()
Parameters: The function does not accept any parameter.
Return Value: Returns a clone of this instance.
Exception: The function does not throws any exception.
Program below demonstrates the above mentioned function:
Program 1:
// program to demonstrate the// function java.util.SimpleTimeZone.clone()import java.util.SimpleTimeZone; public class GFG { public static void main(String[] args) { // create simple time zone object SimpleTimeZone obj = new SimpleTimeZone(520, "India"); // clone the object and print System.out.println("Clone object : " + obj.clone()); }} |
Output:
Clone object : java.util.SimpleTimeZone [ id=India, offset=520, dstSavings=3600000, useDaylight=false, startYear=0, startMode=0, startMonth=0, startDay=0, startDayOfWeek=0, startTime=0, startTimeMode=0, endMode=0, endMonth=0, endDay=0, endDayOfWeek=0, endTime=0, endTimeMode=0 ]
Program 2:
// program to demonstrate the// function java.util.SimpleTimeZone.clone()import java.util.SimpleTimeZone; public class GFG { public static void main(String[] args) { // create simple time zone object SimpleTimeZone obj = new SimpleTimeZone(120, "India"); // clone the object and print System.out.println("Clone object : " + obj.clone()); }} |
Output:
Clone object : java.util.SimpleTimeZone [ id=India, offset=120, dstSavings=3600000, useDaylight=false, startYear=0, startMode=0, startMonth=0, startDay=0, startDayOfWeek=0, startTime=0, startTimeMode=0, endMode=0, endMonth=0, endDay=0, endDayOfWeek=0, endTime=0, endTimeMode=0 ]



