Package org.nutz.castor.castor

Source Code of org.nutz.castor.castor.Datetime2SqlTime

package org.nutz.castor.castor;

import java.sql.Time;
import java.util.Date;

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

public class Datetime2SqlTime extends Castor<Date, Time> {

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

}
TOP

Related Classes of org.nutz.castor.castor.Datetime2SqlTime

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.