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

com.atomikos.util.DateHelper Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package com.atomikos.util;

import java.text.Format;
import java.util.Date;

public class DateHelper {
	
	private static Format dateFormatter = FastDateFormat.getInstance("yyyy.MM.dd HH:mm:ss:SSS");

	public static String format(Date date) {
		return dateFormatter.format(date);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy