OffsetDateTime isEqual(OffsetDateTime other)
checks if the instant of this date-time is equal to that of the specified date-time.
isEqual
has the following syntax.
public boolean isEqual(OffsetDateTime other)
The following example shows how to use isEqual
.
import java.time.OffsetDateTime; public class Main { public static void main(String[] args) { OffsetDateTime o = OffsetDateTime.MAX; System.out.println(o.isEqual(OffsetDateTime.MIN)); } }
The code above generates the following result.