ZoneOffset getId() example
Description
ZoneOffset getId()
gets the normalized zone offset ID.
Syntax
getId
has the following syntax.
public String getId()
Example
The following example shows how to use getId
.
import java.time.ZoneOffset;
//www .ja v a2 s . co m
public class Main {
public static void main(String[] args) {
ZoneOffset z = ZoneOffset.UTC;
String t = z.getId();
System.out.println(t);
}
}
The code above generates the following result.