Here you can find the source of utc()
private static TimeZone utc()
//package com.java2s; import java.util.TimeZone; public class Main { /**/* w ww .j a va 2 s . c o m*/ * Returns a UTC timezone object. * @return the timezone object */ private static TimeZone utc() { return TimeZone.getTimeZone("UTC"); } }