ZoneOffset toString() example

Description

ZoneOffset toString() outputs this offset as a String, using the normalized ID.

Syntax

toString has the following syntax.


public String toString()

Example

The following example shows how to use toString.


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

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