Java Date Time - Java SimpleTimeZone .useDaylightTime ()








Syntax

SimpleTimeZone.useDaylightTime() has the following syntax.

public boolean useDaylightTime()

Example

In the following code shows how to use SimpleTimeZone.useDaylightTime() method.

/*from   ww w . j a va2s  .  com*/
import java.util.SimpleTimeZone;

public class Main {
   public static void main( String args[] ){
      
      SimpleTimeZone stobj = new SimpleTimeZone(820,"US");
      
      // checking day light time  
      System.out.println("Use day light time : " + stobj.useDaylightTime());
   }      
}

The code above generates the following result.