Example usage for org.joda.time.chrono GregorianChronology getInstanceUTC

List of usage examples for org.joda.time.chrono GregorianChronology getInstanceUTC

Introduction

In this page you can find the example usage for org.joda.time.chrono GregorianChronology getInstanceUTC.

Prototype

public static GregorianChronology getInstanceUTC() 

Source Link

Document

Gets an instance of the GregorianChronology.

Usage

From source file:name.gano.astro.time.Time.java

License:Open Source License

public static DateTime dateTimeOfJd(double jd) {
    return new DateTime(Time.convertJD2Calendar(jd), GregorianChronology.getInstanceUTC());
}