ZoneOffsetTransition isGap() method in Java with Example

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–



