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

de.bytefish.fcmjava.client.utils.DateUtils Maven / Gradle / Ivy

There is a newer version: 2.5
Show newest version
package de.bytefish.fcmjava.client.utils;

import java.time.ZoneOffset;
import java.time.ZonedDateTime;

public class DateUtils {

    /**
     * Gets the current UTC DateTime.
     *
     * @return Current UTC DateTime
     */
    public static ZonedDateTime getUtcNow() {
        return ZonedDateTime.now(ZoneOffset.UTC);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy