All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.northernwall.hadrian.GMT Maven / Gradle / Ivy

package com.northernwall.hadrian;

import java.util.Date;
import java.util.TimeZone;

public class GMT {

    public static Date getGmtAsDate() {
        return java.util.Calendar.getInstance(TimeZone.getTimeZone("GMT")).getTime();
    }
    
    public static long getGmtAsLong() {
        return getGmtAsDate().getTime();
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy