ZoneOffset MAX example

Description

ZoneOffset MAX defines constant for the maximum supported offset.

Syntax

MAX has the following syntax.


public static final ZoneOffset MAX

Example

The following example shows how to use MAX.


import java.time.ZoneOffset;
/* ww w. j a  v a  2s  .c  o m*/
public class Main {
  public static void main(String[] args) {
    ZoneOffset t = ZoneOffset.MAX;
    System.out.println(t);
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset