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

org.jgrasstools.gears.utils.time.UtcTimeUtilities Maven / Gradle / Ivy

The newest version!
/*
 * This file is part of JGrasstools (http://www.jgrasstools.org)
 * (C) HydroloGIS - www.hydrologis.com 
 * 
 * JGrasstools is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.jgrasstools.gears.utils.time;

import org.jgrasstools.gears.libs.modules.JGTConstants;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.format.DateTimeFormatter;

/**
 * An utility class for time related issues, all in UTC timezone.
 * 
 * 

This class is supposed to handle only the string * format YYYY-MM-DD HH:MM:SS. If not explicitly defined, * that format, with or without seconds, is used. * * @author Andrea Antonello (www.hydrologis.com) * @since 0.7.0 */ public class UtcTimeUtilities { /** * The formatter for YYYY-MM-DD HH:MM. */ private static DateTimeFormatter withMinutesformatter = JGTConstants.utcDateFormatterYYYYMMDDHHMM; /** * The formatter for YYYY-MM-DD HH:MM:SS. */ private static DateTimeFormatter withSecondsformatter = JGTConstants.utcDateFormatterYYYYMMDDHHMMSS; /** * Getter for the current time. * * @return the current time in utc. */ public static DateTime newDateTime() { DateTime dt = new DateTime().withZone(DateTimeZone.UTC); return dt; } /** * Get {@link DateTime} from date string of format: YYYY-MM-DD HH:MM:SS. * * @param dateTimeString the date string. * @return the parsed datetime. */ public static DateTime fromStringWithSeconds( String dateTimeString ) { DateTime dt = withSecondsformatter.parseDateTime(dateTimeString); return dt; } /** * Get {@link DateTime} from date string of format: YYYY-MM-DD HH:MM. * * @param dateTimeString the date string. * @return the parsed datetime. */ public static DateTime fromStringWithMinutes( String dateTimeString ) { DateTime dt = withMinutesformatter.parseDateTime(dateTimeString); return dt; } /** * Get String of format: YYYY-MM-DD HH:MM:SS from {@link DateTime}. * * @param dateTime the {@link DateTime}. * @return the date string. */ public static String toStringWithSeconds( DateTime dateTime ) { String dtStr = dateTime.toString(withSecondsformatter); return dtStr; } /** * Get String of format: YYYY-MM-DD HH:MM from {@link DateTime}. * * @param dateTime the {@link DateTime}. * @return the date string. */ public static String toStringWithMinutes( DateTime dateTime ) { String dtStr = dateTime.toString(withMinutesformatter); return dtStr; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy