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.


//w  ww.j a v a  2  s.  co m
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.