- Java.util - Home
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util - Interfaces
- Java.util - Exceptions
- Java.util - Enumerations
- Java.util Useful Resources
- Java.util - Useful Resources
- Java.util - Discussion
Java TimeZone inDaylightTime() Method
Description
The Java TimeZone inDaylightTime(Date date) method is used to query if the given date is in daylight savings time in this time zone.
Declaration
Following is the declaration for java.util.TimeZone.inDaylightTime() method.
public abstract boolean inDaylightTime(Date date)
Parameters
date − This is the given Date
Return Value
The method call returns true if the given date is in daylight savings time, false, otherwise.
Exception
NA
Checking a GMT TimeZone to be in DayLight Saving Time Example
The following example shows the usage of Java TimeZone inDaylightTime(Date) method to check if a given date is in daylight saving time. We've created a TimeZone using GMT and a date using Date object with current time. Then we've checked date being in daylight savings using inDaylightTime() ethod and printed the status.
package com.tutorialspoint;
import java.time.Instant;
import java.util.Date;
import java.util.TimeZone;
public class TimeZoneDemo {
public static void main( String args[] ) {
// create simple time zone object
TimeZone stobj1 = new SimpleTimeZone(820,"GMT");
// create date
Date date = Date.from(Instant.now());
// check day light
boolean daylight = stobj1.inDaylightTime(date);
// checking the value of day light
System.out.println("Is in day light : " + daylight);
}
}
Output
Let us compile and run the above program, this will produce the following result.
Is in day light : false
Checking a US TimeZone to be in DayLight Saving Time Example
The following example shows the usage of Java TimeZone inDaylightTime(Date) method to check if a given date is in daylight saving time. We've created a TimeZone using US and a date using Date object with current time. Then we've checked date being in daylight savings using inDaylightTime() ethod and printed the status.
package com.tutorialspoint;
import java.time.Instant;
import java.util.Date;
import java.util.TimeZone;
public class TimeZoneDemo {
public static void main( String args[] ) {
// create simple time zone object
TimeZone stobj1 = new SimpleTimeZone(820,"US");
// create date
Date date = Date.from(Instant.now());
// check day light
boolean daylight = stobj1.inDaylightTime(date);
// checking the value of day light
System.out.println("Is in day light : " + daylight);
}
}
Output
Let us compile and run the above program, this will produce the following result.
Is in day light : false
Checking a BST TimeZone to be in DayLight Saving Time Example
The following example shows the usage of Java TimeZone inDaylightTime(Date) method to check if a given date is in daylight saving time. We've created a TimeZone using BST and a date using Date object with current time. Then we've checked date being in daylight savings using inDaylightTime() ethod and printed the status.
package com.tutorialspoint;
import java.time.Instant;
import java.util.Date;
import java.util.TimeZone;
public class TimeZoneDemo {
public static void main( String args[] ) {
// create simple time zone object
TimeZone stobj1 = new TimeZone(820,"BST");
// create date
Date date = Date.from(Instant.now());
// check day light
boolean daylight = stobj1.inDaylightTime(date);
// checking the value of day light
System.out.println("Is in day light : " + daylight);
}
}
Output
Let us compile and run the above program, this will produce the following result.
Is in day light : false