Package org.nutz.castor.castor

Source Code of org.nutz.castor.castor.Timestamp2SqlDate

package org.nutz.castor.castor;

import java.sql.Date;
import java.sql.Timestamp;

import org.nutz.castor.Castor;
import org.nutz.castor.FailToCastObjectException;

public class Timestamp2SqlDate extends Castor<Timestamp, Date> {

  @Override
  public Date cast(Timestamp src, Class<?> toType, String... args)
      throws FailToCastObjectException {
    return new Date(src.getTime());
  }

}
TOP

Related Classes of org.nutz.castor.castor.Timestamp2SqlDate

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.