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

io.helidon.build.util.TimeUtils Maven / Gradle / Ivy

/*
 * Copyright (c) 2020 Oracle and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.helidon.build.util;

import java.nio.file.attribute.FileTime;
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;

/**
 * Time utilities.
 */
public class TimeUtils {
    private static final DateTimeFormatter ZONED_DATE_FORMATTER = DateTimeFormatter.ofPattern("MM-dd-yyyy kk:mm:ss z");
    private static final ZoneId ZONE = ZoneId.systemDefault();

    /**
     * Returns the current time as a date time string.
     *
     * @return The formatted time.
     */
    public static String currentDateTime() {
        return toDateTime(System.currentTimeMillis());
    }

    /**
     * Returns the time as a date time string.
     *
     * @param millis The time in milliseconds since the epoch (e.g. {@link System#currentTimeMillis()}).
     * @return The formatted time.
     */
    public static String toDateTime(final long millis) {
        return toDateTime(Instant.ofEpochMilli(millis));
    }

    /**
     * Returns the time as a date time string.
     *
     * @param fileTime The time.
     * @return The formatted time.
     */
    public static String toDateTime(final FileTime fileTime) {
        return toDateTime(fileTime.toInstant());
    }

    /**
     * Returns the time as a date time string.
     *
     * @param instant The time.
     * @return The formatted time.
     */
    public static String toDateTime(Instant instant) {
        ZonedDateTime time = ZonedDateTime.ofInstant(instant, ZONE);
        return ZONED_DATE_FORMATTER.format(time);
    }

    private TimeUtils() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy