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

com.thebund1st.daming.time.Clock Maven / Gradle / Ivy

package com.thebund1st.daming.time;

import java.time.ZoneId;
import java.time.ZonedDateTime;

public class Clock {

    //TODO make it configurable
    private ZoneId zoneId = ZoneId.of("Asia/Shanghai");

    public ZonedDateTime now() {
        return ZonedDateTime.now(zoneId);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy