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