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

org.openstreetmap.atlas.utilities.time.Time Maven / Gradle / Ivy

There is a newer version: 7.0.8
Show newest version
package org.openstreetmap.atlas.utilities.time;

import java.time.ZoneOffset;

import org.openstreetmap.atlas.utilities.scalars.Duration;

/**
 * UTC Time
 *
 * @author matthieun
 */
public class Time extends LocalTime
{
    public static Time now()
    {
        return new Time(Duration.milliseconds(System.currentTimeMillis()));
    }

    public Time(final Duration epoch)
    {
        super(epoch, ZoneOffset.UTC);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy