org.hudsonci.utils.common.Iso8601Date Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hudson-utils Show documentation
Show all versions of hudson-utils Show documentation
Contains common utility code, reusable outside Hudson.
The newest version!
/*******************************************************************************
*
* Copyright (c) 2010-2011 Sonatype, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*
*
*
*
*******************************************************************************/
package org.hudsonci.utils.common;
import org.apache.commons.lang3.time.FastDateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* Helper for working with ISO 8601 dates.
*
* @author Jason Dillon
* @since 2.1.0
*/
public class Iso8601Date
{
public static final String PATTERN = "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
//public static final String PATTERN = "yyyy-MM-dd'T'HH:mm:ss.SSSZZZ";
//public static final String PATTERN = "yyyy-MM-dd'T'HH:mm:ss";
public static final FastDateFormat FORMAT = FastDateFormat.getInstance(PATTERN);
private static SimpleDateFormat parser;
public static synchronized Date parse(final String value) throws ParseException {
if (parser == null) {
parser = new SimpleDateFormat(PATTERN);
}
return parser.parse(value);
}
public static String format(final Date date) {
return FORMAT.format(date);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy