ZoneOffsetTransition isGap() method in Java with Example Last Updated : 24 Jan, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report The isGap() method of java.time.zone.ZoneOffsetTransition class is used to check if there is any gap in the local time represented by this zone off set transition. Syntax: public boolean isGap() Parameter: this method does not accept any parameter. Return Value: This method returns true if there is a gap in the transition otherwise false. Below are the examples to illustrate the isGap() method: Example 1: Java // Java program to demonstrate // isGap() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.zone.*; public class GFG { public static void main(String[] argv) { // creating and initializing // the object of LocalDateTime LocalDateTime loc = LocalDateTime.of( 1999, 04, 25, 03, 24, 59, 0); // creating and initializing // the object of ZoneOffset ZoneOffset off1 = ZoneOffset.ofHoursMinutes(0, 8); // creating and initializing // the object of ZoneOffset ZoneOffset off2 = ZoneOffset.ofTotalSeconds(9); // creating and initializing // ZoneOffsetTransition Object ZoneOffsetTransition zonetrans1 = ZoneOffsetTransition.of( loc, off1, off2); // comparing both object using // isGap() method boolean status = zonetrans1.isGap(); // display the result if (status) System.out.println("there is a gap"); else System.out.println("no gap found"); } } Output:no gap found Example 2: Java // Java program to demonstrate // isGap() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.zone.*; public class GFG { public static void main(String[] argv) { // creating and initializing // the object of LocalDateTime LocalDateTime loc = LocalDateTime.of( 1999, 04, 25, 03, 24, 59, 0); // creating and initializing // the object of ZoneOffset ZoneOffset off1 = ZoneOffset.ofTotalSeconds(8); // creating and initializing // the object of ZoneOffset ZoneOffset off2 = ZoneOffset.ofTotalSeconds(12); // creating and initializing // ZoneOffsetTransition Object ZoneOffsetTransition zonetrans1 = ZoneOffsetTransition.of( loc, off1, off2); // comparing both object using // isGap() method boolean status = zonetrans1.isGap(); // display the result if (status) System.out.println("there is a gap"); else System.out.println("no gap found"); } } Output:there is a gap Reference: https://docs.oracle.com/javase/9/docs/api/java/time/zone/ZoneOffsetTransition.html#isGap-- Comment More infoAdvertise with us Next Article ZoneOffsetTransition isGap() method in Java with Example R rohitprasad3 Follow Improve Article Tags : Java Java-Functions Practice Tags : Java Similar Reads ZoneOffsetTransition isOverlap() method in Java with Example The isOverlap() method of java.time.zone.ZoneOffsetTransition class is used to check if there is an overlapping in between the transition or not. Syntax: public boolean isOverlap() Parameter: this method does not accept any parameter. Return Value: This method returns true if there is an overlapping 2 min read ZoneOffsetTransition of() method in Java with Example The of() method of java.time.zone.ZoneOffsetTransition class is used to create the object of zone offset transition with the help of local date time, offset before and offset after. Syntax: public static ZoneOffsetTransition of(LocalDateTime transition, ZoneOffset offsetBefore, ZoneOffset offsetAfte 2 min read ZoneOffsetTransition isValidOffset() method in Java with Example The isValidOffset() method of java.time.zone.ZoneOffsetTransition class is used to check if the particular zone offset is valid or not during the transition. Syntax: public boolean isValidOffset(ZoneOffset offset) Parameter: this method used to take type of zone offset object as a parameter. Return 2 min read ZoneOffsetTransition getInstant() method in Java with Example The getInstant() method of java.time.zone.ZoneOffsetTransition class is used to get the object of instant type representing the transition between the two zone offset. Syntax: public Instant getInstant() Parameter: This method does not accept any parameter. Return Value: This method returns the obje 2 min read ZoneOffsetTransition equals() method in Java with Example The equals() method of java.time.zone.ZoneOffsetTransition class is used to make comparison between two objects of ZoneOffsetTransition type . Syntax: public boolean equals(Object other) Parameter: this method takes the object of other zoneoffsetTransition as a parameter. Return Value: This method r 2 min read Like