ZoneOffset toString()
outputs
this offset as a String, using the normalized ID.
toString
has the following syntax.
public String toString()
The following example shows how to use toString
.
import java.time.ZoneOffset; 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.