List of usage examples for java.time ZoneOffset getId
@Override
public String getId()
From source file:Main.java
public static void main(String[] args) { ZoneOffset z = ZoneOffset.UTC; String t = z.getId(); System.out.println(t);/*from ww w . j av a2s . c o m*/ }