Java SimpleTimeZone setStartYear() Method



Description

The Java SimpleTimeZone setStartYear(int year) method is used to set the daylight saving time starting year.

Declaration

Following is the declaration for java.util.SimpleTimeZone.setStartYear() method.

public void setStartYear(int year)

Parameters

year − The daylight saving starting year.

Return Value

NA

Exception

NA

Setting Start Year of a SimpleTimeZone Instance of GMT Timezone Example

The following example shows the usage of Java SimpleTimeZone setStartYear(int year) method to set the daylight saving time start year. We've created a SimpleTimeZone using GMT and printed it. Then we've set the daylight saving time start year using setStartYear() method and printed the updated SimpleTimeZone object.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object
      SimpleTimeZone stobj = new SimpleTimeZone(820,"GMT");

      // checking initial value     
      System.out.println("Initial value: " + stobj);

      // setting start year   
      stobj.setStartYear(2008);   

      // checking the new value      
      System.out.println("Final value : " + stobj);
   }      
}

Output

Let us compile and run the above program, this will produce the following result.

Initial value: java.util.SimpleTimeZone[id=GMT,offset=820,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]
Final value : java.util.SimpleTimeZone[id=GMT,offset=820,dstSavings=3600000,useDaylight=false,startYear=2008,startMode=0,startMonth=0,startDay=0,startDayOfWeek=0,startTime=0,startTimeMode=0,endMode=0,endMonth=0,endDay=0,endDayOfWeek=0,endTime=0,endTimeMode=0]

Setting Start Year of a SimpleTimeZone Instance of BST Timezone Example

The following example shows the usage of Java SimpleTimeZone setStartYear(int year) method to set the daylight saving time start year. We've created a SimpleTimeZone using BST and printed it. Then we've set the daylight saving time start year using setStartYear() method and printed the updated SimpleTimeZone object.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object
      SimpleTimeZone stobj = new SimpleTimeZone(820,"BST");

      // checking initial value     
      System.out.println("Initial value: " + stobj);

      // setting start year   
      stobj.setStartYear(2008);   

      // checking the new value      
      System.out.println("Final value : " + stobj);
   }      
}

Output

Let us compile and run the above program, this will produce the following result.

Initial value: java.util.SimpleTimeZone[id=BST,offset=820,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]
Final value : java.util.SimpleTimeZone[id=BST,offset=820,dstSavings=3600000,useDaylight=false,startYear=2008,startMode=0,startMonth=0,startDay=0,startDayOfWeek=0,startTime=0,startTimeMode=0,endMode=0,endMonth=0,endDay=0,endDayOfWeek=0,endTime=0,endTimeMode=0]

Setting Start Year of a SimpleTimeZone Instance of IST Timezone Example

The following example shows the usage of Java SimpleTimeZone setStartYear(int year) method to set the daylight saving time start year. We've created a SimpleTimeZone using IST and printed it. Then we've set the daylight saving time start year using setStartYear() method and printed the updated SimpleTimeZone object.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object
      SimpleTimeZone stobj = new SimpleTimeZone(820,"IST");

      // checking initial value     
      System.out.println("Initial value: " + stobj);

      // setting start year   
      stobj.setStartYear(2008);   

      // checking the new value      
      System.out.println("Final value : " + stobj);
   }      
}

Output

Let us compile and run the above program, this will produce the following result.

Initial value: java.util.SimpleTimeZone[id=IST,offset=820,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]
Final value : java.util.SimpleTimeZone[id=IST,offset=820,dstSavings=3600000,useDaylight=false,startYear=2008,startMode=0,startMonth=0,startDay=0,startDayOfWeek=0,startTime=0,startTimeMode=0,endMode=0,endMonth=0,endDay=0,endDayOfWeek=0,endTime=0,endTimeMode=0]
java_util_simpletimezone.htm
Advertisements