com.shopizer.search.utils.DateUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-search Show documentation
Show all versions of sm-search Show documentation
Search module for shopizer using elasticsearch 5.6.12
package com.shopizer.search.utils;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateUtil {
public final static String DATE_FORMAT = "yyyy-MM-dd";
public static Date formatDate(String date) throws Exception {
DateFormat myDateFormat = new SimpleDateFormat(DATE_FORMAT);
return myDateFormat.parse(date);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy