Package org.g4studio.core.orm.xibatis.sqlmap.engine.type

Source Code of org.g4studio.core.orm.xibatis.sqlmap.engine.type.SimpleDateFormatter

package org.g4studio.core.orm.xibatis.sqlmap.engine.type;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.g4studio.core.orm.xibatis.sqlmap.client.SqlMapException;

public class SimpleDateFormatter {
  public static Date format(String format, String datetime) {
    try {
      return new SimpleDateFormat(format).parse(datetime);
    } catch (ParseException e) {
      throw new SqlMapException("Error parsing default null value date.  Format must be '" + format
          + "'. Cause: " + e);
    }
  }

}
TOP

Related Classes of org.g4studio.core.orm.xibatis.sqlmap.engine.type.SimpleDateFormatter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.